#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 | |
Processor * | NEW () |
Static Public Attributes | |
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 1099 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 1124 of file processor.h. 01125 { 01126 return "if f(x) != 0: f(x) = 1/f(x) else: f(x) = zero_to"; 01127 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 1102 of file processor.h. 01103 {
01104 return NAME;
01105 }
|
|
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 1117 of file processor.h. References EMAN::TypeDict::put(). 01118 { 01119 TypeDict d; 01120 d.put("zero_to", EMObject::FLOAT, "Inverted zero values are set to this value, default is 0."); 01121 return d; 01122 }
|
|
Definition at line 1106 of file processor.h. 01107 { 01108 return new InvertCarefullyProcessor(); 01109 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 1132 of file processor.h. References x.
|
|
Set the processor parameters using a key/value dictionary.
Reimplemented from EMAN::RealPixelProcessor. Definition at line 1111 of file processor.h. References EMAN::Dict::set_default(). 01112 { 01113 params = new_params; 01114 zero_to = params.set_default("zero_to",0.0f); 01115 }
|
|
Definition at line 78 of file processor.cpp. |
|
Definition at line 1138 of file processor.h. |