#include <processor.h>
Inheritance diagram for EMAN::CircularMaskProcessor:
Public Member Functions | |
CircularMaskProcessor () | |
void | set_params (const Dict &new_params) |
Set the processor parameters using a key/value dictionary. | |
string | get_desc () const |
Get the descrition of this specific processor. | |
TypeDict | get_param_types () const |
Get processor parameter information in a dictionary. | |
Protected Member Functions | |
void | calc_locals (EMData *image) |
bool | is_valid () const |
void | process_pixel (float *pixel, int xi, int yi, int zi) const |
virtual void | process_dist_pixel (float *pixel, float dist) const =0 |
Protected Attributes | |
int | inner_radius |
int | outer_radius |
int | inner_radius_square |
int | outer_radius_square |
float | dx |
float | dy |
float | dz |
float | xc |
float | yc |
float | zc |
inner_radius | inner mask radius. optional, default=-1 | |
outer_radius | outer mask radius | |
dx | Modify mask center by dx relative to the default center nx/2 | |
dy | Modify mask center by dy relative to the default center ny/2 | |
dz | Modify mask center by dz relative to the default center nz/2 |
Definition at line 2297 of file processor.h.
|
Definition at line 2300 of file processor.h. 02300 :inner_radius(0), outer_radius(0), inner_radius_square(0), 02301 outer_radius_square(0), dx(0), dy(0), dz(0), xc(0), yc(0), zc(0) 02302 { 02303 }
|
|
Reimplemented from EMAN::CoordinateProcessor. Reimplemented in EMAN::MaskEdgeMeanProcessor, and EMAN::MaskGaussInvProcessor. Definition at line 1462 of file processor.cpp. References EMAN::Util::fast_floor(), inner_radius, inner_radius_square, outer_radius, outer_radius_square, xc, yc, and zc. 01463 { 01464 xc = Util::fast_floor(nx/2.0f) + dx; 01465 yc = Util::fast_floor(ny/2.0f) + dy; 01466 zc = Util::fast_floor(nz/2.0f) + dz; 01467 01468 if (outer_radius < 0) { 01469 outer_radius = nx / 2 + outer_radius +1; 01470 outer_radius_square = outer_radius * outer_radius; 01471 } 01472 01473 if (inner_radius <= 0) { 01474 inner_radius_square = 0; 01475 } 01476 }
|
|
Get the descrition of this specific processor. This function must be overwritten by a subclass.
Implements EMAN::Processor. Reimplemented in EMAN::MaskSharpProcessor, EMAN::MaskEdgeMeanProcessor, EMAN::MaskNoiseProcessor, EMAN::MaskGaussProcessor, EMAN::MaskGaussInvProcessor, EMAN::MakeRadiusSquaredProcessor, and EMAN::MakeRadiusProcessor. Definition at line 2335 of file processor.h. 02336 { 02337 return "CircularMaskProcessor applies a circular mask to the data.This is the base class for specific circular mask processors.Its subclass must implement process_dist_pixel()."; 02338 }
|
|
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. Reimplemented in EMAN::MaskSharpProcessor, EMAN::MaskEdgeMeanProcessor, EMAN::MaskGaussProcessor, and EMAN::MaskGaussInvProcessor. Definition at line 2340 of file processor.h. References EMAN::TypeDict::put(). 02341 { 02342 TypeDict d; 02343 02344 d.put("inner_radius", EMObject::INT, "inner mask radius. optional"); 02345 d.put("outer_radius", EMObject::INT, "outer mask radius. Negative value -> box radius + outer_radius +1"); 02346 02347 d.put("dx", EMObject::FLOAT, 02348 "Modify mask center by dx relative to the default center nx/2"); 02349 d.put("dy", EMObject::FLOAT, 02350 "Modify mask center by dy relative to the default center ny/2"); 02351 d.put("dz", EMObject::FLOAT, 02352 "Modify mask center by dz relative to the default center nz/2"); 02353 02354 return d; 02355 }
|
|
Reimplemented from EMAN::CoordinateProcessor. Definition at line 2359 of file processor.h. 02360 {
02361 return (!is_complex);
02362 }
|
|
|
Implements EMAN::CoordinateProcessor. Definition at line 2364 of file processor.h. References dist(). 02365 { 02366 float dist = (xi - xc) * (xi - xc) + (yi - yc) * (yi - yc) + (zi - zc) * (zi - zc); 02367 process_dist_pixel(pixel, dist); 02368 }
|
|
Set the processor parameters using a key/value dictionary.
Reimplemented from EMAN::Processor. Reimplemented in EMAN::MaskSharpProcessor, EMAN::MaskEdgeMeanProcessor, and EMAN::MaskGaussProcessor. Definition at line 2305 of file processor.h. 02306 { 02307 params = new_params; 02308 02309 if (params.has_key("inner_radius")) { 02310 inner_radius = params["inner_radius"]; 02311 inner_radius_square = inner_radius * inner_radius; 02312 } 02313 else { 02314 inner_radius = -1; 02315 inner_radius_square = -1; 02316 } 02317 02318 if (params.has_key("outer_radius")) { 02319 outer_radius = params["outer_radius"]; 02320 outer_radius_square = outer_radius * outer_radius; 02321 } 02322 else { 02323 outer_radius = INT_MAX; 02324 outer_radius_square = INT_MAX; 02325 } 02326 02327 if (params.has_key("xc")) xc = params["xc"]; 02328 if (params.has_key("yc")) yc = params["yc"]; 02329 if (params.has_key("zc")) zc = params["zc"]; 02330 if (params.has_key("dx")) dx = params["dx"]; 02331 if (params.has_key("dy")) dy = params["dy"]; 02332 if (params.has_key("dz")) dz = params["dz"]; 02333 }
|
|
Definition at line 2376 of file processor.h. |
|
Definition at line 2376 of file processor.h. |
|
Definition at line 2376 of file processor.h. |
|
Definition at line 2372 of file processor.h. Referenced by calc_locals(). |
|
Definition at line 2374 of file processor.h. Referenced by calc_locals(). |
|
Definition at line 2373 of file processor.h. Referenced by calc_locals(). |
|
Definition at line 2375 of file processor.h. Referenced by calc_locals(). |
|
Definition at line 2377 of file processor.h. Referenced by calc_locals(). |
|
Definition at line 2377 of file processor.h. Referenced by calc_locals(). |
|
Definition at line 2377 of file processor.h. Referenced by calc_locals(). |