#include <processor.h>
Inheritance diagram for EMAN::InvertCarefullyProcessor:
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.invert.carefully" |
Protected Member Functions | |
void | process_pixel (float *x) const |
Private Attributes | |
float | zero_to |
zero_to | Inverted zero values are set to this value, default is 0 |
Definition at line 1321 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 1346 of file processor.h.
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 1324 of file processor.h. References NAME. 01325 { 01326 return NAME; 01327 }
|
|
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 1339 of file processor.h. References EMAN::EMObject::FLOAT, and EMAN::TypeDict::put(). 01340 { 01341 TypeDict d; 01342 d.put("zero_to", EMObject::FLOAT, "Inverted zero values are set to this value, default is 0."); 01343 return d; 01344 }
|
|
Definition at line 1328 of file processor.h. 01329 { 01330 return new InvertCarefullyProcessor(); 01331 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 1354 of file processor.h. References zero_to.
|
|
Set the processor parameters using a key/value dictionary.
Reimplemented from EMAN::RealPixelProcessor. Definition at line 1333 of file processor.h. References EMAN::Processor::params, EMAN::Dict::set_default(), and zero_to. 01334 { 01335 params = new_params; 01336 zero_to = params.set_default("zero_to",0.0f); 01337 }
|
|
Definition at line 1351 of file processor.h. Referenced by get_name(). |
|
Definition at line 1360 of file processor.h. Referenced by process_pixel(), and set_params(). |