#include <processor.h>
Inheritance diagram for EMAN::AddSigmaNoiseProcessor:
Public Member Functions | |
virtual string | get_name () const |
Get the processor's name. | |
virtual string | get_desc () const |
Get the descrition of this specific processor. | |
Static Public Member Functions | |
Processor * | NEW () |
Static Public Attributes | |
const string | NAME = "math.addsignoise" |
Protected Member Functions | |
float | get_sigma (EMData *image) |
Definition at line 4681 of file processor.h.
|
Get the descrition of this specific processor. This function must be overwritten by a subclass.
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 4694 of file processor.h. 04695 { 04696 return "add sigma noise."; 04697 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 4684 of file processor.h. 04685 {
04686 return NAME;
04687 }
|
|
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 4508 of file processor.cpp. References EMAN::EMData::get_attr(), and LOGWARN. 04509 { 04510 if (!image) { 04511 LOGWARN("NULL Image"); 04512 return 0; 04513 } 04514 return image->get_attr("sigma"); 04515 }
|
|
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 4689 of file processor.h. 04690 { 04691 return new AddSigmaNoiseProcessor(); 04692 }
|
|
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 160 of file processor.cpp. |