#include <processor.h>
Inheritance diagram for EMAN::LinearXformProcessor:
Public Member Functions | |
LinearXformProcessor () | |
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.linear" |
Protected Member Functions | |
void | process_pixel (float *x) const |
Private Attributes | |
float | shift |
float | scale |
shift | The amount to shift pixel values by before scaling | |
scale | The scaling factor to be applied to pixel values |
Definition at line 1955 of file processor.h.
|
Definition at line 1958 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 1986 of file processor.h. 01987 { 01988 return "linear transform processor: f(x) = x * scale + shift. This is equivalent to a regular contrast stretching operation"; 01989 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 1962 of file processor.h. 01963 {
01964 return NAME;
01965 }
|
|
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 1978 of file processor.h. References EMAN::TypeDict::put(). 01979 { 01980 TypeDict d; 01981 d.put("shift", EMObject::FLOAT, "The amount to shift pixel values by before scaling"); 01982 d.put("scale", EMObject::FLOAT, "The scaling factor to be applied to pixel values"); 01983 return d; 01984 }
|
|
Definition at line 1966 of file processor.h. 01967 { 01968 return new LinearXformProcessor(); 01969 }
|
|
Implements EMAN::RealPixelProcessor. Definition at line 1994 of file processor.h. References x.
|
|
Set the processor parameters using a key/value dictionary.
Reimplemented from EMAN::RealPixelProcessor. Definition at line 1971 of file processor.h. References EMAN::Dict::get(). 01972 { 01973 params = new_params; 01974 shift = params.get("shift"); 01975 scale = params.get("scale"); 01976 }
|
|
Definition at line 104 of file processor.cpp. |
|
Definition at line 2001 of file processor.h. |
|
Definition at line 2000 of file processor.h. |