#include <processor.h>
Inheritance diagram for EMAN::NormalizeUnitProcessor:
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.unitlen" |
Protected Member Functions | |
float | calc_sigma (EMData *image) const |
float | calc_mean (EMData *image) const |
Definition at line 4084 of file processor.h.
|
Implements EMAN::NormalizeProcessor. Definition at line 4109 of file processor.h.
|
|
Reimplemented from EMAN::NormalizeProcessor. Definition at line 3523 of file processor.cpp. References EMAN::EMData::get_attr(), LOGWARN, and sqrt(). 03524 { 03525 if (!image) { 03526 LOGWARN("NULL Image"); 03527 return 0; 03528 } 03529 float ret=sqrt((float)image->get_attr("square_sum")); 03530 return ret==0.0f?1.0f:ret; 03531 }
|
|
Get the descrition of this specific processor. This function must be overwritten by a subclass.
Implements EMAN::Processor. Definition at line 4097 of file processor.h.
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 4087 of file processor.h. References NAME. 04088 { 04089 return NAME; 04090 }
|
|
Definition at line 4092 of file processor.h. 04093 { 04094 return new NormalizeUnitProcessor(); 04095 }
|
|
Definition at line 4102 of file processor.h. Referenced by get_name(). |