#include <processor.h>
Inheritance diagram for EMAN::TestImageScurve:
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 | |
Processor * | NEW () |
Static Public Attributes | |
const string | NAME = "testimage.scurve" |
Definition at line 6031 of file processor.h.
|
Get the descrition of this specific processor. This function must be overwritten by a subclass.
Implements EMAN::Processor. Definition at line 6041 of file processor.h. 06042 { 06043 return "Replace a source image with a lumpy S-curve used for alignment testing"; 06044 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 6036 of file processor.h. 06037 {
06038 return NAME;
06039 }
|
|
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 6051 of file processor.h. 06052 { 06053 TypeDict d; 06054 return d; 06055 }
|
|
Definition at line 6046 of file processor.h. 06047 { 06048 return new TestImageScurve(); 06049 }
|
|
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.
Implements EMAN::Processor. Definition at line 7172 of file processor.cpp. References EMAN::EMData::get_ndim(), EMAN::EMData::get_xsize(), EMAN::EMData::get_ysize(), ImageDimensionException, nx, ny, EMAN::TestImageProcessor::preprocess(), EMAN::EMData::to_zero(), EMAN::EMData::update(), x, and y. 07173 { 07174 preprocess(image); 07175 07176 int dim_size = image->get_ndim(); 07177 if( 2 != dim_size ) { 07178 throw ImageDimensionException("works for 2D images only"); 07179 } 07180 07181 int nx = image->get_xsize(); 07182 int ny = image->get_ysize(); 07183 image->to_zero(); 07184 07185 for (int i=0; i<100; i++) { 07186 int x=static_cast<int>( nx/2+nx/6.0*sin(i*2.0*3.14159/100.0) ); 07187 int y=ny/4+i*ny/200; 07188 for (int xx=x-nx/10; xx<x+nx/10; xx++) { 07189 for (int yy=y-ny/10; yy<y+ny/10; yy++) { 07190 #ifdef _WIN32 07191 (*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); 07192 #else 07193 (*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); 07194 #endif 07195 } 07196 } 07197 } 07198 07199 image->update(); 07200 }
|
|
Definition at line 197 of file processor.cpp. |