#include <processor.h>
Inheritance diagram for EMAN::CollapseProcessor:
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 = "threshold.compress" |
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 1869 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 1896 of file processor.h. 01897 { 01898 return "f(x): if v-r<x<v+r -> v; if x>v+r -> x-r; if x<v-r -> x+r"; 01899 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 1872 of file processor.h. 01873 {
01874 return NAME;
01875 }
|
|
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 1888 of file processor.h. References EMAN::TypeDict::put(). 01889 { 01890 TypeDict d; 01891 d.put("range", EMObject::FLOAT, "The range about 'value' which will be collapsed to 'value'"); 01892 d.put("value", EMObject::FLOAT, "The pixel value where the focus of the collapse operation is"); 01893 return d; 01894 }
|
|
Definition at line 1876 of file processor.h. 01877 { 01878 return new CollapseProcessor(); 01879 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 1904 of file processor.h. References x. 01905 { 01906 if (*x>value+range) *x-=range; 01907 else if (*x<value-range) *x+=range; 01908 else *x=value; 01909 }
|
|
Set the processor parameters using a key/value dictionary.
Reimplemented from EMAN::RealPixelProcessor. Definition at line 1881 of file processor.h. 01882 { 01883 params = new_params; 01884 range = params["range"]; 01885 value = params["value"]; 01886 }
|
|
Definition at line 97 of file processor.cpp. |
|
Definition at line 1910 of file processor.h. |