#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 | |
static Processor * | NEW () |
Static Public Attributes | |
static 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 1339 of file processor.h.
string EMAN::ValuePowProcessor::get_desc | ( | ) | const [inline, virtual] |
Get the descrition of this specific processor.
This function must be overwritten by a subclass.
Implements EMAN::Processor.
Definition at line 1364 of file processor.h.
string EMAN::ValuePowProcessor::get_name | ( | ) | const [inline, virtual] |
Get the processor's name.
Each processor is identified by a unique name.
Implements EMAN::Processor.
Definition at line 1342 of file processor.h.
References NAME.
01343 { 01344 return NAME; 01345 }
TypeDict EMAN::ValuePowProcessor::get_param_types | ( | ) | const [inline, virtual] |
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 1357 of file processor.h.
References EMAN::EMObject::FLOAT, and EMAN::TypeDict::put().
01358 { 01359 TypeDict d; 01360 d.put("pow", EMObject::FLOAT, "Each pixel is raised to this power"); 01361 return d; 01362 }
static Processor* EMAN::ValuePowProcessor::NEW | ( | ) | [inline, static] |
void EMAN::ValuePowProcessor::process_pixel | ( | float * | x | ) | const [inline, protected, virtual] |
void EMAN::ValuePowProcessor::set_params | ( | const Dict & | new_params | ) | [inline, virtual] |
Set the processor parameters using a key/value dictionary.
new_params | A dictionary containing the new parameters. |
Reimplemented from EMAN::RealPixelProcessor.
Definition at line 1351 of file processor.h.
References EMAN::Processor::params, and pwr.
const string ValuePowProcessor::NAME = "math.pow" [static] |
float EMAN::ValuePowProcessor::pwr [private] |