Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members

EMAN::DecayEdgeProcessor Class Reference

Decay edges of image to zero. More...

#include <processor.h>

Inheritance diagram for EMAN::DecayEdgeProcessor:

Inheritance graph
[legend]
Collaboration diagram for EMAN::DecayEdgeProcessor:

Collaboration graph
[legend]
List of all members.

Public Member Functions

void process_inplace (EMData *image)
 To process an image in-place.
string get_name () const
 Get the processor's name.
string get_desc () const
 Get the descrition of this specific processor.
TypeDict get_param_types () const
 Get processor parameter information in a dictionary.

Static Public Member Functions

ProcessorNEW ()

Static Public Attributes

const string NAME = "mask.decayedge2d"

Detailed Description

Decay edges of image to zero.

Parameters:
width Width of the decay region around the edge of the image in pixels

Definition at line 3880 of file processor.h.


Member Function Documentation

string EMAN::DecayEdgeProcessor::get_desc  )  const [inline, virtual]
 

Get the descrition of this specific processor.

This function must be overwritten by a subclass.

Returns:
The description of this processor.

Implements EMAN::Processor.

Definition at line 3894 of file processor.h.

03895                 {
03896                         return "Decay edges of image to zero";
03897                 }

string EMAN::DecayEdgeProcessor::get_name  )  const [inline, virtual]
 

Get the processor's name.

Each processor is identified by a unique name.

Returns:
The processor's name.

Implements EMAN::Processor.

Definition at line 3884 of file processor.h.

03885                 {
03886                         return NAME;
03887                 }

TypeDict EMAN::DecayEdgeProcessor::get_param_types  )  const [inline, virtual]
 

Get processor parameter information in a dictionary.

Each parameter has one record in the dictionary. Each record contains its name, data-type, and description.

Returns:
A dictionary containing the parameter info.

Reimplemented from EMAN::Processor.

Definition at line 3899 of file processor.h.

References EMAN::TypeDict::put().

03900                 {
03901                         TypeDict d;
03902                         d.put("width", EMObject::INT, "Width of the decay region around the edge of the image in pixels");
03903                         return d;
03904                 }

Processor* EMAN::DecayEdgeProcessor::NEW  )  [inline, static]
 

Definition at line 3889 of file processor.h.

03890                 {
03891                         return new DecayEdgeProcessor();
03892                 }

void DecayEdgeProcessor::process_inplace EMData image  )  [virtual]
 

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.

Parameters:
image The image to be processed.

Implements EMAN::Processor.

Definition at line 3337 of file processor.cpp.

References EMAN::EMData::get_data(), EMAN::EMData::get_xsize(), EMAN::EMData::get_ysize(), EMAN::EMData::get_zsize(), ImageDimensionException, LOGWARN, nx, ny, and EMAN::EMData::update().

03338 {
03339         if (!image) {
03340                 LOGWARN("NULL Image");
03341                 return;
03342         }
03343 
03344         if (image->get_zsize() > 1) throw ImageDimensionException("3D model not supported");
03345 
03346         int nx = image->get_xsize();
03347         int ny = image->get_ysize();
03348 
03349         float *d = image->get_data();
03350         int width = params["width"];
03351 
03352         for (int i=0; i<width; i++) {
03353                 float frac=i/(float)width;
03354                 for (int j=0; j<nx; j++) {
03355                         d[j+i*nx]*=frac;
03356                         d[nx*ny-j-i*nx-1]*=frac;
03357                 }
03358                 for (int j=0; j<ny; j++) {
03359                         d[j*nx+i]*=frac;
03360                         d[nx*ny-j*nx-i-1]*=frac;
03361                 }
03362         }
03363 
03364         image->update();
03365 }


Member Data Documentation

const string DecayEdgeProcessor::NAME = "mask.decayedge2d" [static]
 

Definition at line 144 of file processor.cpp.


The documentation for this class was generated from the following files:
Generated on Tue Jul 12 13:52:14 2011 for EMAN2 by  doxygen 1.3.9.1