#include <processor.h>


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 () |
Protected Member Functions | |
| void | process_pixel (float *x) const |
Protected Attributes | |
| float | range |
| range | The range about 'value' which will be collapsed to 'value' | |
| value | The pixel value where the focus of the collapse operation is |
Definition at line 1726 of file processor.h.
| string EMAN::CollapseProcessor::get_name | ( | ) | const [inline, virtual] |
Get the processor's name.
Each processor is identified by a unique name.
Implements EMAN::Processor.
Definition at line 1729 of file processor.h.
| static Processor* EMAN::CollapseProcessor::NEW | ( | ) | [inline, static] |
| void EMAN::CollapseProcessor::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 1738 of file processor.h.
References EMAN::Processor::params, range, and EMAN::RealPixelProcessor::value.
01739 { 01740 params = new_params; 01741 range = params["range"]; 01742 value = params["value"]; 01743 }
| TypeDict EMAN::CollapseProcessor::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 1745 of file processor.h.
References EMAN::EMObject::FLOAT, and EMAN::TypeDict::put().
01746 { 01747 TypeDict d; 01748 d.put("range", EMObject::FLOAT, "The range about 'value' which will be collapsed to 'value'"); 01749 d.put("value", EMObject::FLOAT, "The pixel value where the focus of the collapse operation is"); 01750 return d; 01751 }
| string EMAN::CollapseProcessor::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 1753 of file processor.h.
| void EMAN::CollapseProcessor::process_pixel | ( | float * | x | ) | const [inline, protected, virtual] |
float EMAN::CollapseProcessor::range [protected] |
1.5.6