#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 4426 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 4439 of file processor.h. 04440 { 04441 return "add sigma noise."; 04442 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 4429 of file processor.h. 04430 {
04431 return NAME;
04432 }
|
|
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 4332 of file processor.cpp. References EMAN::EMData::get_attr(), and LOGWARN. 04333 { 04334 if (!image) { 04335 LOGWARN("NULL Image"); 04336 return 0; 04337 } 04338 return image->get_attr("sigma"); 04339 }
|
|
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 4434 of file processor.h. 04435 { 04436 return new AddSigmaNoiseProcessor(); 04437 }
|
|
Reimplemented from EMAN::AddNoiseProcessor. Definition at line 154 of file processor.cpp. |