#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 4601 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 4614 of file processor.h. 04615 { 04616 return "add sigma noise."; 04617 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 4604 of file processor.h. 04605 {
04606 return NAME;
04607 }
|
|
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 4333 of file processor.cpp. References EMAN::EMData::get_attr(), and LOGWARN. 04334 { 04335 if (!image) { 04336 LOGWARN("NULL Image"); 04337 return 0; 04338 } 04339 return image->get_attr("sigma"); 04340 }
|
|
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 4609 of file processor.h. 04610 { 04611 return new AddSigmaNoiseProcessor(); 04612 }
|
|
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 159 of file processor.cpp. |