#include <processor.h>
Inheritance diagram for EMAN::MaskNoiseProcessor:
Public Member Functions | |
string | get_name () const |
Get the processor's name. | |
string | get_desc () const |
Get the descrition of this specific processor. | |
Static Public Member Functions | |
Processor * | NEW () |
Static Public Attributes | |
const string | NAME = "mask.noise" |
Protected Member Functions | |
void | process_dist_pixel (float *pixel, float dist) const |
Definition at line 2488 of file processor.h.
|
Get the descrition of this specific processor. This function must be overwritten by a subclass.
Reimplemented from EMAN::CircularMaskProcessor. Definition at line 2500 of file processor.h. 02501 { 02502 return "fills masked region"; 02503 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 2491 of file processor.h. 02492 {
02493 return NAME;
02494 }
|
|
Definition at line 2495 of file processor.h. 02496 { 02497 return new MaskNoiseProcessor(); 02498 }
|
|
Implements EMAN::CircularMaskProcessor. Definition at line 2508 of file processor.h. References dist(). 02509 { 02510 if (dist >= outer_radius_square || dist < inner_radius_square) 02511 { 02512 *pixel = Util::get_gauss_rand(mean, sigma); 02513 } 02514 }
|
|
Definition at line 106 of file processor.cpp. |