#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 | |
static Processor * | NEW () |
Static Public Attributes | |
static const string | NAME = "normalize.circlemean" |
Protected Member Functions | |
float | calc_mean (EMData *image) const |
Definition at line 4342 of file processor.h.
float NormalizeCircleMeanProcessor::calc_mean | ( | EMData * | image | ) | const [protected, virtual] |
Implements EMAN::NormalizeProcessor.
Definition at line 3763 of file processor.cpp.
References EMAN::EMData::get_circle_mean(), and LOGWARN.
03764 { 03765 if (!image) { 03766 LOGWARN("NULL Image"); 03767 return 0; 03768 } 03769 return image->get_circle_mean(); 03770 }
string EMAN::NormalizeCircleMeanProcessor::get_desc | ( | ) | const [inline, virtual] |
Get the descrition of this specific processor.
This function must be overwritten by a subclass.
Implements EMAN::Processor.
Definition at line 4355 of file processor.h.
04356 { 04357 return "normalizes an image, mean value equals to mean of 2 pixel circular border."; 04358 }
string EMAN::NormalizeCircleMeanProcessor::get_name | ( | ) | const [inline, virtual] |
Get the processor's name.
Each processor is identified by a unique name.
Implements EMAN::Processor.
Definition at line 4345 of file processor.h.
References NAME.
04346 { 04347 return NAME; 04348 }
static Processor* EMAN::NormalizeCircleMeanProcessor::NEW | ( | ) | [inline, static] |
Definition at line 4350 of file processor.h.
04351 { 04352 return new NormalizeCircleMeanProcessor(); 04353 }
const string NormalizeCircleMeanProcessor::NAME = "normalize.circlemean" [static] |