#include <processor.h>
Inheritance diagram for EMAN::TestImagePureGaussian:
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 Processor * | NEW () |
Static Public Attributes | |
static const string | NAME = "testimage.puregaussian" |
x_sigma | sigma value for this Gaussian blob on x direction | |
y_sigma | sigma value for this Gaussian blob on y direction | |
z_sigma | sigma value for this Gaussian blob on z direction | |
x_center | center for this Gaussian blob on x direction | |
y_center | center for this Gaussian blob on y direction | |
z_center | center for this Gaussian blob on z direction |
Definition at line 5825 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 5835 of file processor.h.
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 5830 of file processor.h. References NAME. 05831 { 05832 return NAME; 05833 }
|
|
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 5845 of file processor.h. References EMAN::EMObject::FLOAT, and EMAN::TypeDict::put(). 05846 { 05847 TypeDict d; 05848 d.put("x_sigma", EMObject::FLOAT, "sigma value for this Gaussian blob on x direction"); 05849 d.put("y_sigma", EMObject::FLOAT, "sigma value for this Gaussian blob on y direction"); 05850 d.put("z_sigma", EMObject::FLOAT, "sigma value for this Gaussian blob on z direction"); 05851 d.put("x_center", EMObject::FLOAT, "center for this Gaussian blob on x direction" ); 05852 d.put("y_center", EMObject::FLOAT, "center for this Gaussian blob on y direction" ); 05853 d.put("z_center", EMObject::FLOAT, "center for this Gaussian blob on z direction" ); 05854 return d; 05855 }
|
|
Definition at line 5840 of file processor.h. 05841 { 05842 return new TestImagePureGaussian(); 05843 }
|
|
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 7240 of file processor.cpp. References EMAN::EMData::get_xsize(), EMAN::EMData::get_ysize(), EMAN::EMData::get_zsize(), norm(), EMAN::Processor::params, pi, EMAN::TestImageProcessor::preprocess(), sqrt(), EMAN::EMData::update(), and x. 07241 { 07242 preprocess(image); 07243 07244 float x_sigma = params["x_sigma"]; 07245 float y_sigma = params["y_sigma"]; 07246 float z_sigma = params["z_sigma"]; 07247 07248 float x_center = params["x_center"]; 07249 float y_center = params["y_center"]; 07250 float z_center = params["z_center"]; 07251 07252 int nx = image->get_xsize(); 07253 int ny = image->get_ysize(); 07254 int nz = image->get_zsize(); 07255 07256 float x_twosig2 = 2*x_sigma*x_sigma; 07257 float y_twosig2 = 2*y_sigma*y_sigma; 07258 float z_twosig2 = 2*z_sigma*z_sigma; 07259 07260 float sr2pi = sqrt( 2.0f*(float)pi ); 07261 float norm = 1.0f/ ( x_sigma*sr2pi ); 07262 if (ny > 1) { 07263 norm *= 1.0f/ ( y_sigma*sr2pi ); 07264 if (nz > 1) norm *= 1.0f/ ( z_sigma*sr2pi ); 07265 } 07266 07267 float z, y, x, sum, val; 07268 for (int iz=0; iz < nz; ++iz) { 07269 z = static_cast<float>(iz) - z_center; 07270 for (int iy=0; iy < ny; ++iy) { 07271 y = static_cast<float>(iy) - y_center; 07272 for (int ix=0; ix < nx; ++ix) { 07273 x = static_cast<float>(ix) - x_center; 07274 sum = x*x/x_twosig2 + y*y/y_twosig2 + z*z/z_twosig2; 07275 val = norm*exp(-sum); 07276 (*image)(ix,iy,iz) = val; 07277 } 07278 } 07279 } 07280 image->update(); 07281 }
|
|
Definition at line 5857 of file processor.h. Referenced by get_name(). |