#include <processor.h>
Inheritance diagram for EMAN::SigmaProcessor:
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.sigma" |
Protected Member Functions | |
void | process_pixel (float *x) const |
Private Attributes | |
float | value1 |
float | value2 |
value1 | A number reflecting total standard deviations in the right direction | |
value2 | A number reflecting total standard deviations in the left direction |
Definition at line 2172 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 2199 of file processor.h. 02200 { 02201 return "f(x) = mean if x<(mean-v2*sigma) or x>(mean+v1*sigma); else f(x) = x;"; 02202 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 2175 of file processor.h. 02176 {
02177 return NAME;
02178 }
|
|
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 2191 of file processor.h. References EMAN::TypeDict::put(). 02192 { 02193 TypeDict d; 02194 d.put("value1", EMObject::FLOAT, "A number reflecting total standard deviations in the right direction"); 02195 d.put("value2", EMObject::FLOAT, "A number reflecting total standard deviations in the left direction"); 02196 return d; 02197 }
|
|
Definition at line 2179 of file processor.h. 02180 { 02181 return new SigmaProcessor(); 02182 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 2207 of file processor.h. References x. 02208 { 02209 if (*x < (mean - value2 * sigma) || *x > (mean + value1 * sigma)) 02210 { 02211 *x = mean; 02212 } 02213 }
|
|
Set the processor parameters using a key/value dictionary.
Reimplemented from EMAN::RealPixelProcessor. Definition at line 2184 of file processor.h. References EMAN::Dict::get(). 02185 { 02186 params = new_params; 02187 value1 = params.get("value1"); 02188 value2 = params.get("value2"); 02189 }
|
|
Definition at line 102 of file processor.cpp. |
|
Definition at line 2216 of file processor.h. |
|
Definition at line 2217 of file processor.h. |