#include <processor.h>
Inheritance diagram for EMAN::MinusPeakProcessor:
Public Member Functions | |
string | get_name () const |
Get the processor's name. | |
string | get_desc () const |
Get the descrition of this specific processor. | |
Static Public Member Functions | |
Processor * | NEW () |
Static Public Attributes | |
const string | NAME = "math.submax" |
Protected Member Functions | |
void | process_pixel (float *pixel, const float *data, int n) const |
This is a sort of positive peak-finding algorithm.
Definition at line 3093 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 3105 of file processor.h. 03106 { 03107 return "peak processor: pixel = pixel - max of values surrounding pixel. This is a sort of positive peak-finding algorithm."; 03108 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 3096 of file processor.h. 03097 {
03098 return NAME;
03099 }
|
|
Definition at line 3100 of file processor.h. 03101 { 03102 return new MinusPeakProcessor(); 03103 }
|
|
Implements EMAN::BoxStatProcessor. Definition at line 3113 of file processor.h. References data. 03114 { 03115 float maxval = -FLT_MAX; 03116 for (int i = 0; i < n; i++) 03117 { 03118 if (data[i] > maxval) { 03119 maxval = data[i]; 03120 } 03121 } 03122 *pixel -= maxval; 03123 }
|
|
Definition at line 125 of file processor.cpp. |