#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 4605 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 4618 of file processor.h. 04619 { 04620 return "add sigma noise."; 04621 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 4608 of file processor.h. 04609 {
04610 return NAME;
04611 }
|
|
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 4421 of file processor.cpp. References EMAN::EMData::get_attr(), and LOGWARN. 04422 { 04423 if (!image) { 04424 LOGWARN("NULL Image"); 04425 return 0; 04426 } 04427 return image->get_attr("sigma"); 04428 }
|
|
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 4613 of file processor.h. 04614 { 04615 return new AddSigmaNoiseProcessor(); 04616 }
|
|
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 165 of file processor.cpp. |