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

EMAN::TestImageScurve Class Reference

Replace a source image with a lumpy S-curve used for alignment testing. More...

#include <processor.h>

Inheritance diagram for EMAN::TestImageScurve:

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

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

static ProcessorNEW ()

Static Public Attributes

static const string NAME = "testimage.scurve"

Detailed Description

Replace a source image with a lumpy S-curve used for alignment testing.

Definition at line 6159 of file processor.h.


Member Function Documentation

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

06170                 {
06171                         return "Replace a source image with a lumpy S-curve used for alignment testing";
06172                 }

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

References NAME.

06165                 {
06166                         return NAME;
06167                 }

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

06180                 {
06181                         TypeDict d;
06182                         return d;
06183                 }

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

Definition at line 6174 of file processor.h.

06175                 {
06176                         return new TestImageScurve();
06177                 }

void TestImageScurve::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 7210 of file processor.cpp.

References EMAN::EMData::get_ndim(), EMAN::EMData::get_xsize(), EMAN::EMData::get_ysize(), ImageDimensionException, EMAN::TestImageProcessor::preprocess(), EMAN::EMData::to_zero(), EMAN::EMData::update(), and x.

07211 {
07212         preprocess(image);
07213 
07214         int dim_size = image->get_ndim();
07215         if( 2 != dim_size ) {
07216                 throw ImageDimensionException("works for 2D images only");
07217         }
07218 
07219         int nx = image->get_xsize();
07220         int ny = image->get_ysize();
07221         image->to_zero();
07222 
07223         for (int i=0; i<100; i++) {
07224                 int x=static_cast<int>( nx/2+nx/6.0*sin(i*2.0*3.14159/100.0) );
07225                 int y=ny/4+i*ny/200;
07226                 for (int xx=x-nx/10; xx<x+nx/10; xx++) {
07227                         for (int yy=y-ny/10; yy<y+ny/10; yy++) {
07228 #ifdef  _WIN32
07229                                 (*image)(xx,yy)+=exp(-pow(static_cast<float>(_hypot(xx-x,yy-y))*30.0f/nx,2.0f))*(sin(static_cast<float>((xx-x)*(yy-y)))+.5f);
07230 #else
07231                                 (*image)(xx,yy)+=exp(-pow(static_cast<float>(hypot(xx-x,yy-y))*30.0f/nx,2.0f))*(sin(static_cast<float>((xx-x)*(yy-y)))+.5f);
07232 #endif
07233                         }
07234                 }
07235         }
07236 
07237         image->update();
07238 }


Member Data Documentation

const string TestImageScurve::NAME = "testimage.scurve" [static]
 

Definition at line 6185 of file processor.h.

Referenced by get_name().


The documentation for this class was generated from the following files:
Generated on Mon Jul 19 13:07:23 2010 for EMAN2 by  doxygen 1.4.4