#include <processor.h>
Inheritance diagram for EMAN::NormalizeUnitSumProcessor:
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.unitsum" |
Protected Member Functions | |
float | calc_sigma (EMData *image) const |
float | calc_mean (EMData *image) const |
Definition at line 4038 of file processor.h.
|
Implements EMAN::NormalizeProcessor. Definition at line 4063 of file processor.h. 04063 { return 0; }
|
|
Reimplemented from EMAN::NormalizeProcessor. Definition at line 3472 of file processor.cpp. References EMAN::EMData::get_attr(), EMAN::EMData::get_xsize(), EMAN::EMData::get_ysize(), EMAN::EMData::get_zsize(), and LOGWARN. 03473 { 03474 if (!image) { 03475 LOGWARN("NULL Image"); 03476 return 0; 03477 } 03478 float ret=(float)image->get_attr("mean")*image->get_xsize()*image->get_ysize()*image->get_zsize(); 03479 return ret==0.0f?1.0f:ret; 03480 }
|
|
Get the descrition of this specific processor. This function must be overwritten by a subclass.
Implements EMAN::Processor. Definition at line 4051 of file processor.h. 04052 { 04053 return "Normalize an image so its elements sum to 1.0 (fails if mean=0)"; 04054 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 4041 of file processor.h. 04042 {
04043 return NAME;
04044 }
|
|
Definition at line 4046 of file processor.h. 04047 { 04048 return new NormalizeUnitSumProcessor(); 04049 }
|
|
Definition at line 143 of file processor.cpp. |