#include <processor.h>
Inheritance diagram for EMAN::PeakOnlyProcessor:
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 = "mask.onlypeaks" |
Protected Member Functions | |
void | process_pixel (float *pixel, const float *data, int n) const |
Private Attributes | |
int | npeaks |
npeaks | the number of surrounding peaks allow to >= pixel values |
Definition at line 3172 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 3199 of file processor.h. 03200 { 03201 return "peak processor -> if npeaks or more surrounding values >= value, value->0"; 03202 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 3175 of file processor.h. 03176 {
03177 return NAME;
03178 }
|
|
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::BoxStatProcessor. Definition at line 3192 of file processor.h. References EMAN::TypeDict::put(). 03193 { 03194 TypeDict d; 03195 d.put("npeaks", EMObject::INT, "the number of surrounding peaks allow to >= pixel values"); 03196 return d; 03197 }
|
|
Definition at line 3179 of file processor.h. 03180 { 03181 return new PeakOnlyProcessor(); 03182 }
|
|
Implements EMAN::BoxStatProcessor. Definition at line 3207 of file processor.h. References data. 03208 { 03209 int r = 0; 03210 03211 for (int i = 0; i < n; i++) 03212 { 03213 if (data[i] >= *pixel) { 03214 r++; 03215 } 03216 } 03217 03218 if (r > npeaks) 03219 { 03220 *pixel = 0; 03221 } 03222 }
|
|
Set the processor parameters using a key/value dictionary.
Reimplemented from EMAN::Processor. Definition at line 3183 of file processor.h. 03184 { 03185 params = new_params; 03186 npeaks = params["npeaks"]; 03187 if (npeaks == 0) { 03188 npeaks = 1; 03189 } 03190 }
|
|
Definition at line 121 of file processor.cpp. |
|
Definition at line 3224 of file processor.h. |