#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 3125 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 3152 of file processor.h. 03153 { 03154 return "peak processor -> if npeaks or more surrounding values >= value, value->0"; 03155 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 3128 of file processor.h. 03129 {
03130 return NAME;
03131 }
|
|
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 3145 of file processor.h. References EMAN::TypeDict::put(). 03146 { 03147 TypeDict d; 03148 d.put("npeaks", EMObject::INT, "the number of surrounding peaks allow to >= pixel values"); 03149 return d; 03150 }
|
|
Definition at line 3132 of file processor.h. 03133 { 03134 return new PeakOnlyProcessor(); 03135 }
|
|
Implements EMAN::BoxStatProcessor. Definition at line 3160 of file processor.h. References data. 03161 { 03162 int r = 0; 03163 03164 for (int i = 0; i < n; i++) 03165 { 03166 if (data[i] >= *pixel) { 03167 r++; 03168 } 03169 } 03170 03171 if (r > npeaks) 03172 { 03173 *pixel = 0; 03174 } 03175 }
|
|
Set the processor parameters using a key/value dictionary.
Reimplemented from EMAN::Processor. Definition at line 3136 of file processor.h. 03137 { 03138 params = new_params; 03139 npeaks = params["npeaks"]; 03140 if (npeaks == 0) { 03141 npeaks = 1; 03142 } 03143 }
|
|
Definition at line 121 of file processor.cpp. |
|
Definition at line 3177 of file processor.h. |