#include <processor.h>
Inheritance diagram for EMAN::LogProcessor:
Public Member Functions | |
string | get_name () const |
Get the processor's name. | |
string | get_desc () const |
Get the descrition of this specific processor. | |
Static Public Member Functions | |
Processor * | NEW () |
Static Public Attributes | |
const string | NAME = "math.log" |
Protected Member Functions | |
void | process_pixel (float *x) const |
Definition at line 2047 of file processor.h.
|
Get the descrition of this specific processor. This function must be overwritten by a subclass.
Implements EMAN::Processor. Definition at line 2059 of file processor.h. 02060 { 02061 return "f(x) = log10(x) if x > 0; else f(x) = 0;"; 02062 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 2050 of file processor.h. 02051 {
02052 return NAME;
02053 }
|
|
Definition at line 2054 of file processor.h. 02055 { 02056 return new LogProcessor(); 02057 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 2067 of file processor.h. 02068 { 02069 if (*x > 0) 02070 { 02071 *x = log10(*x); 02072 } 02073 else 02074 { 02075 *x = 0; 02076 } 02077 }
|
|
Definition at line 98 of file processor.cpp. |