#include <processor.h>
Inheritance diagram for EMAN::RangeThresholdProcessor:
Public Member Functions | |
RangeThresholdProcessor () | |
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.binaryrange" |
Protected Member Functions | |
void | process_pixel (float *x) const |
Private Attributes | |
float | low |
float | high |
low | The lower limit of the range that will be set to 1 | |
high | The upper limit of the range that will be set to 1 |
Definition at line 1939 of file processor.h.
|
Definition at line 1942 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 1970 of file processor.h. 01971 { 01972 return "Range thresholding. A range of values is set to 1, all else is set to 0. f(x) = 1 if (low <= x <= high); else f(x) = 0"; 01973 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 1946 of file processor.h. 01947 {
01948 return NAME;
01949 }
|
|
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 1962 of file processor.h. References EMAN::TypeDict::put(). 01963 { 01964 TypeDict d; 01965 d.put("low", EMObject::FLOAT, "The lower limit of the range that will be set to 1"); 01966 d.put("high", EMObject::FLOAT, "The upper limit of the range that will be set to 1"); 01967 return d; 01968 }
|
|
Definition at line 1950 of file processor.h. 01951 { 01952 return new RangeThresholdProcessor(); 01953 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 1978 of file processor.h. References x. 01979 { 01980 if (*x >= low && *x <= high) { 01981 *x = 1; 01982 } 01983 else { 01984 *x = 0; 01985 } 01986 }
|
|
Set the processor parameters using a key/value dictionary.
Reimplemented from EMAN::RealPixelProcessor. Definition at line 1955 of file processor.h. References EMAN::Dict::get(). 01956 { 01957 params = new_params; 01958 low = params.get("low"); 01959 high = params.get("high"); 01960 }
|
|
Definition at line 1989 of file processor.h. |
|
Definition at line 1988 of file processor.h. |
|
Definition at line 96 of file processor.cpp. |