#include <processor.h>
Inheritance diagram for EMAN::AddNoiseProcessor:
Public Member Functions | |
virtual void | process_inplace (EMData *image) |
To process an image in-place. | |
virtual string | get_name () const |
Get the processor's name. | |
virtual TypeDict | get_param_types () const |
Get processor parameter information in a dictionary. | |
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.addnoise" |
Protected Member Functions | |
virtual float | get_sigma (EMData *) |
noise | noise factor used to generate Gaussian distribution random noise | |
seed | seed for random number generator |
Definition at line 4597 of file processor.h.
|
Get the descrition of this specific processor. This function must be overwritten by a subclass.
Implements EMAN::Processor. Reimplemented in EMAN::AddSigmaNoiseProcessor. Definition at line 4620 of file processor.h. 04621 { 04622 return "add noise to an image, image multiply by noise then add a random value"; 04623 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Reimplemented in EMAN::AddSigmaNoiseProcessor. Definition at line 4602 of file processor.h. 04603 {
04604 return NAME;
04605 }
|
|
Get processor parameter information in a dictionary. Each parameter has one record in the dictionary. Each record contains its name, data-type, and description.
Reimplemented from EMAN::Processor. Definition at line 4612 of file processor.h. References EMAN::TypeDict::put(). 04613 { 04614 TypeDict d; 04615 d.put("noise", EMObject::FLOAT, "noise factor used to generate Gaussian distribution random noise"); 04616 d.put("seed", EMObject::INT, "seed for random number generator"); 04617 return d; 04618 }
|
|
Reimplemented in EMAN::AddSigmaNoiseProcessor. Definition at line 4628 of file processor.h. Referenced by process_inplace(). 04629 {
04630 return 1.0;
04631 }
|
|
Reimplemented in EMAN::AddSigmaNoiseProcessor. Definition at line 4607 of file processor.h. 04608 { 04609 return new AddNoiseProcessor(); 04610 }
|
|
To process an image in-place. For those processors which can only be processed out-of-place, override this function to just print out some error message to remind user call the out-of-place version.
Implements EMAN::Processor. Definition at line 4413 of file processor.cpp. References EMAN::EMData::get_data(), EMAN::Randnum::get_gauss_rand(), get_sigma(), EMAN::EMData::get_size(), EMAN::Dict::has_key(), EMAN::Randnum::Instance(), LOGWARN, EMAN::Randnum::set_seed(), and EMAN::EMData::update(). 04414 { 04415 if (!image) { 04416 LOGWARN("NULL Image"); 04417 return; 04418 } 04419 04420 Randnum * randnum = Randnum::Instance(); 04421 if(params.has_key("seed")) { 04422 randnum->set_seed((int)params["seed"]); 04423 } 04424 04425 float addnoise = params["noise"]; 04426 addnoise *= get_sigma(image); 04427 float *dat = image->get_data(); 04428 04429 for (size_t j = 0; j < image->get_size(); ++j) { 04430 dat[j] += randnum->get_gauss_rand(addnoise, addnoise / 2); 04431 } 04432 04433 image->update(); 04434 }
|
|
Reimplemented in EMAN::AddSigmaNoiseProcessor. Definition at line 159 of file processor.cpp. |