#include <processor.h>
Inheritance diagram for EMAN::BoxMaxProcessor:
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.localmax" |
Protected Member Functions | |
void | process_pixel (float *pixel, const float *data, int n) const |
Definition at line 3054 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 3066 of file processor.h. 03067 { 03068 return "peak processor: pixel = max of values surrounding pixel."; 03069 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 3057 of file processor.h. 03058 {
03059 return NAME;
03060 }
|
|
Definition at line 3061 of file processor.h. 03062 { 03063 return new BoxMaxProcessor(); 03064 }
|
|
Implements EMAN::BoxStatProcessor. Definition at line 3074 of file processor.h. References data. 03075 { 03076 float maxval = -FLT_MAX; 03077 for (int i = 0; i < n; i++) 03078 { 03079 if (data[i] > maxval) { 03080 maxval = data[i]; 03081 } 03082 } 03083 *pixel = maxval; 03084 }
|
|
Definition at line 119 of file processor.cpp. |