#include <processor.h>
Inheritance diagram for EMAN::ValuePowProcessor:
Public Member Functions | |
string | get_name () const |
Get the processor's name. | |
void | set_params (const Dict &new_params) |
Set the processor parameters using a key/value dictionary. | |
TypeDict | get_param_types () const |
Get processor parameter information in a dictionary. | |
string | get_desc () const |
Get the descrition of this specific processor. | |
Static Public Member Functions | |
Processor * | NEW () |
Static Public Attributes | |
const string | NAME = "math.pow" |
Protected Member Functions | |
void | process_pixel (float *x) const |
Private Attributes | |
float | pwr |
pow | Each pixel is raised to this power |
Definition at line 1240 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 1265 of file processor.h. 01266 { 01267 return "f(x) = x ^ pow;"; 01268 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 1243 of file processor.h. 01244 {
01245 return NAME;
01246 }
|
|
Get processor parameter information in a dictionary. Each parameter has one record in the dictionary. Each record contains its name, data-type, and description.
Reimplemented from EMAN::Processor. Definition at line 1258 of file processor.h. References EMAN::TypeDict::put(). 01259 { 01260 TypeDict d; 01261 d.put("pow", EMObject::FLOAT, "Each pixel is raised to this power"); 01262 return d; 01263 }
|
|
Definition at line 1247 of file processor.h. 01248 { 01249 return new ValuePowProcessor(); 01250 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 1273 of file processor.h. References x.
|
|
Set the processor parameters using a key/value dictionary.
Reimplemented from EMAN::RealPixelProcessor. Definition at line 1252 of file processor.h.
|
|
Definition at line 86 of file processor.cpp. |
|
Definition at line 1279 of file processor.h. |