#include <processor.h>
Inheritance diagram for EMAN::MaskGaussInvProcessor:
Public Member Functions | |
TypeDict | get_param_types () const |
Get processor parameter information in a dictionary. | |
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 = "math.gausskernelfix" |
Protected Member Functions | |
void | calc_locals (EMData *) |
void | process_dist_pixel (float *pixel, float dist) const |
Private Attributes | |
float | slice_value |
gauss_width | Used to calculate the constant factor - gauss_width / (ny*ny) | |
ring_width | The width of the mask ring |
Definition at line 2645 of file processor.h.
|
Reimplemented from EMAN::CircularMaskProcessor. Definition at line 2674 of file processor.h. References ny. 02675 { 02676 float gauss_width = params["gauss_width"]; 02677 slice_value = gauss_width / (ny * ny); 02678 }
|
|
Get the descrition of this specific processor. This function must be overwritten by a subclass.
Reimplemented from EMAN::CircularMaskProcessor. Definition at line 2666 of file processor.h. 02667 { 02668 return "f(x) = f(x) / exp(-radius*radius * gauss_width / (ny*ny))"; 02669 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 2656 of file processor.h. 02657 {
02658 return NAME;
02659 }
|
|
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::CircularMaskProcessor. Definition at line 2648 of file processor.h. References EMAN::TypeDict::put(). 02649 { 02650 TypeDict d = CircularMaskProcessor::get_param_types(); 02651 d.put("gauss_width", EMObject::FLOAT, "Used to calculate the constant factor - gauss_width / (ny*ny)" ); 02652 d.put("ring_width", EMObject::INT, "The width of the mask ring."); 02653 return d; 02654 }
|
|
Definition at line 2661 of file processor.h. 02662 { 02663 return new MaskGaussInvProcessor(); 02664 }
|
|
Implements EMAN::CircularMaskProcessor. Definition at line 2680 of file processor.h. References dist(). 02681 { 02682 (*pixel) /= exp(-dist * slice_value); 02683 }
|
|
Definition at line 109 of file processor.cpp. |
|
Definition at line 2685 of file processor.h. |