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

EMAN::TestImageCylinder Class Reference

Replace a source image with a cylinder. More...

#include <processor.h>

Inheritance diagram for EMAN::TestImageCylinder:

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

Collaboration graph
[legend]
List of all members.

Public Member Functions

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

Static Public Member Functions

ProcessorNEW ()

Static Public Attributes

const string NAME = "testimage.cylinder"

Detailed Description

Replace a source image with a cylinder.

Parameters:
radius radius for the cylinder
height height for the cylinder, by default it's the nz

Definition at line 6349 of file processor.h.


Member Function Documentation

virtual string EMAN::TestImageCylinder::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 6359 of file processor.h.

06360                 {
06361                         return "Replace a source image as a cylinder";
06362                 }

virtual string EMAN::TestImageCylinder::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 6354 of file processor.h.

06355                 {
06356                         return NAME;
06357                 }

virtual TypeDict EMAN::TestImageCylinder::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 6369 of file processor.h.

References EMAN::TypeDict::put().

06370                 {
06371                         TypeDict d;
06372                         d.put("radius", EMObject::FLOAT, "radius for the cylinder");
06373                         d.put("height", EMObject::FLOAT, "height for the cylinder, by default it's the nz");
06374 
06375                         return d;
06376                 }

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

Definition at line 6364 of file processor.h.

06365                 {
06366                         return new TestImageCylinder();
06367                 }

void TestImageCylinder::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 7706 of file processor.cpp.

References EMAN::EMData::get_data(), EMAN::EMData::get_xsize(), EMAN::EMData::get_ysize(), EMAN::EMData::get_zsize(), EMAN::Dict::has_key(), ImageDimensionException, InvalidValueException, min, nx, ny, EMAN::TestImageProcessor::preprocess(), and EMAN::EMData::update().

07707 {
07708         preprocess(image);
07709 
07710         int nx = image->get_xsize();
07711         int ny = image->get_ysize();
07712         int nz = image->get_zsize();
07713 
07714         if(nz == 1) {
07715                 throw ImageDimensionException("This processor only apply to 3D image");
07716         }
07717 
07718         float radius = params["radius"];
07719 #ifdef _WIN32
07720         if(radius > _cpp_min(nx, ny)/2.0) {
07721 #else
07722         if(radius > std::min(nx, ny)/2.0) {
07723 #endif
07724                 throw InvalidValueException(radius, "radius must be <= min(nx, ny)/2");
07725         }
07726 
07727         float height;
07728         if(params.has_key("height")) {
07729                 height = params["height"];
07730                 if(height > nz) {
07731                         throw InvalidValueException(radius, "height must be <= nz");
07732                 }
07733         }
07734         else {
07735                 height = static_cast<float>(nz);
07736         }
07737 
07738         float *dat = image->get_data();
07739         float x2, y2; //this is coordinates of this pixel from center axle
07740         float r = 0.0f;
07741         for (int k = 0; k < nz; ++k) {
07742                 for (int j = 0; j < ny; ++j) {
07743                         for (int i = 0; i < nx; ++i, ++dat) {
07744                                 x2 = fabs((float)i - nx/2);
07745                                 y2 = fabs((float)j - ny/2);
07746                                 r = (x2*x2)/(radius*radius) + (y2*y2)/(radius*radius);
07747 
07748                                 if(r<=1 && k>=(nz-height)/2 && k<=(nz+height)/2) {
07749                                         *dat = 1;
07750                                 }
07751                                 else {
07752                                         *dat = 0;
07753                                 }
07754                         }
07755                 }
07756         }
07757 
07758         image->update();
07759 }


Member Data Documentation

const string TestImageCylinder::NAME = "testimage.cylinder" [static]
 

Definition at line 204 of file processor.cpp.


The documentation for this class was generated from the following files:
Generated on Thu Dec 9 13:48:25 2010 for EMAN2 by  doxygen 1.3.9.1