#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 1249 of file processor.h.
string EMAN::InvertCarefullyProcessor::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 1274 of file processor.h.
string EMAN::InvertCarefullyProcessor::get_name | ( | ) | const [inline, virtual] |
Get the processor's name.
Each processor is identified by a unique name.
Implements EMAN::Processor.
Definition at line 1252 of file processor.h.
References NAME.
01253 { 01254 return NAME; 01255 }
TypeDict EMAN::InvertCarefullyProcessor::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 1267 of file processor.h.
References EMAN::EMObject::FLOAT, and EMAN::TypeDict::put().
01268 { 01269 TypeDict d; 01270 d.put("zero_to", EMObject::FLOAT, "Inverted zero values are set to this value, default is 0."); 01271 return d; 01272 }
static Processor* EMAN::InvertCarefullyProcessor::NEW | ( | ) | [inline, static] |
Definition at line 1256 of file processor.h.
01257 { 01258 return new InvertCarefullyProcessor(); 01259 }
void EMAN::InvertCarefullyProcessor::process_pixel | ( | float * | x | ) | const [inline, protected, virtual] |
Implements EMAN::RealPixelProcessor.
Definition at line 1282 of file processor.h.
References zero_to.
void EMAN::InvertCarefullyProcessor::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 1261 of file processor.h.
References EMAN::Processor::params, EMAN::Dict::set_default(), and zero_to.
01262 { 01263 params = new_params; 01264 zero_to = params.set_default("zero_to",0.0f); 01265 }
const string InvertCarefullyProcessor::NAME = "math.invert.carefully" [static] |
float EMAN::InvertCarefullyProcessor::zero_to [private] |