#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 3126 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 3153 of file processor.h. 03154 { 03155 return "peak processor -> if npeaks or more surrounding values >= value, value->0"; 03156 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 3129 of file processor.h. 03130 {
03131 return NAME;
03132 }
|
|
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 3146 of file processor.h. References EMAN::TypeDict::put(). 03147 { 03148 TypeDict d; 03149 d.put("npeaks", EMObject::INT, "the number of surrounding peaks allow to >= pixel values"); 03150 return d; 03151 }
|
|
Definition at line 3133 of file processor.h. 03134 { 03135 return new PeakOnlyProcessor(); 03136 }
|
|
Implements EMAN::BoxStatProcessor. Definition at line 3161 of file processor.h. References data. 03162 { 03163 int r = 0; 03164 03165 for (int i = 0; i < n; i++) 03166 { 03167 if (data[i] >= *pixel) { 03168 r++; 03169 } 03170 } 03171 03172 if (r > npeaks) 03173 { 03174 *pixel = 0; 03175 } 03176 }
|
|
Set the processor parameters using a key/value dictionary.
Reimplemented from EMAN::Processor. Definition at line 3137 of file processor.h. 03138 { 03139 params = new_params; 03140 npeaks = params["npeaks"]; 03141 if (npeaks == 0) { 03142 npeaks = 1; 03143 } 03144 }
|
|
Definition at line 120 of file processor.cpp. |
|
Definition at line 3178 of file processor.h. |