#include <processor.h>
Inheritance diagram for EMAN::MaskGaussNonuniformProcessor:
Public Member Functions | |
MaskGaussNonuniformProcessor () | |
void | set_params (const Dict &new_params) |
Set the processor parameters using a key/value dictionary. | |
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 = "mask.gaussian.nonuniform" |
Protected Member Functions | |
void | process_pixel (float *pixel, int xi, int yi, int zi) const |
Protected Attributes | |
float | radius_x |
float | radius_y |
float | radius_z |
float | gauss_width |
radius_x | x-axis radius | |
radius_y | y-axis radius | |
radius_z | z-axis radius | |
gauss_width | Gaussian falloff width, relative to each radius, default 0.05 |
Definition at line 2488 of file processor.h.
|
Definition at line 2491 of file processor.h. 02491 :radius_x(0), radius_y(0), radius_z(0), gauss_width(0) 02492 { 02493 }
|
|
Get the descrition of this specific processor. This function must be overwritten by a subclass.
Implements EMAN::Processor. Definition at line 2533 of file processor.h. 02534 { 02535 return "A Gaussian falloff to zero. Nonisotropic, specify inner radius for x,y,z and Gaussian falloff width. Falloff \ 02536 width is also nonisotropic and relative to the radii, with 1 being equal to the radius on that axis."; 02537 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 2524 of file processor.h. 02525 {
02526 return NAME;
02527 }
|
|
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 2512 of file processor.h. References EMAN::TypeDict::put(). 02513 { 02514 TypeDict d; 02515 02516 d.put("radius_x", EMObject::INT, "x-axis radius"); 02517 d.put("radius_y", EMObject::INT, "y-axis radius"); 02518 d.put("radius_z", EMObject::INT, "z-axis radius"); 02519 d.put("gauss_width", EMObject::FLOAT, "Gaussian falloff width, relative to each radius, default 0.05"); 02520 02521 return d; 02522 }
|
|
Definition at line 2528 of file processor.h. 02529 { 02530 return new MaskGaussNonuniformProcessor(); 02531 }
|
|
Implements EMAN::CoordinateProcessor. Definition at line 2542 of file processor.h. References dist(), nx, ny, and sqrt(). 02543 { 02544 float dist = pow((xi - nx/2)/radius_x,2.0f) + pow((yi - ny/2)/radius_y,2.0f) + pow((zi - nz/2)/radius_z,2.0f); 02545 if (dist>1.0) (*pixel)*=exp(-pow((sqrt(dist)-1.0f)/gauss_width,2.0f)); 02546 }
|
|
Set the processor parameters using a key/value dictionary.
Reimplemented from EMAN::Processor. Definition at line 2495 of file processor.h. 02496 { 02497 params = new_params; 02498 02499 if (params.has_key("radius_x")) radius_x=params["radius_x"]; 02500 else radius_x=5.0; 02501 02502 if (params.has_key("radius_y")) radius_y=params["radius_y"]; 02503 else radius_y=5.0; 02504 02505 if (params.has_key("radius_z")) radius_z=params["radius_z"]; 02506 else radius_z=5.0; 02507 02508 if (params.has_key("gauss_width")) gauss_width=params["gauss_width"]; 02509 else gauss_width=0.05f; 02510 }
|
|
Definition at line 2548 of file processor.h. |
|
Definition at line 106 of file processor.cpp. |
|
Definition at line 2548 of file processor.h. |
|
Definition at line 2548 of file processor.h. |
|
Definition at line 2548 of file processor.h. |