#include <processor.h>
Inheritance diagram for EMAN::NormalizeCircleMeanProcessor:
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 = "normalize.circlemean" |
Protected Member Functions | |
float | calc_mean (EMData *image) const |
Definition at line 4226 of file processor.h.
|
Implements EMAN::NormalizeProcessor. Definition at line 3642 of file processor.cpp. References EMAN::EMData::get_circle_mean(), and LOGWARN. 03643 { 03644 if (!image) { 03645 LOGWARN("NULL Image"); 03646 return 0; 03647 } 03648 return image->get_circle_mean(); 03649 }
|
|
Get the descrition of this specific processor. This function must be overwritten by a subclass.
Implements EMAN::Processor. Definition at line 4239 of file processor.h. 04240 { 04241 return "normalizes an image, mean value equals to mean of 2 pixel circular border."; 04242 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 4229 of file processor.h. 04230 {
04231 return NAME;
04232 }
|
|
Definition at line 4234 of file processor.h. 04235 { 04236 return new NormalizeCircleMeanProcessor(); 04237 }
|
|
Definition at line 149 of file processor.cpp. |