#include <processor.h>
Inheritance diagram for EMAN::TestImageGaussian:
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.gaussian" |
sigma | sigma value for this Gaussian blob | |
axis | specify a major axis for asymmetric features | |
c | distance between focus and the center of an ellipse |
Definition at line 5912 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 5922 of file processor.h. 05923 { 05924 return "Replace a source image as a Gaussian Blob"; 05925 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 5917 of file processor.h. 05918 {
05919 return NAME;
05920 }
|
|
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 5932 of file processor.h. References EMAN::TypeDict::put(). 05933 { 05934 TypeDict d; 05935 d.put("sigma", EMObject::FLOAT, "sigma value for this Gaussian blob"); 05936 d.put("axis", EMObject::STRING, "specify a major axis for asymmetric features"); 05937 d.put("c", EMObject::FLOAT, "distance between focus and the center of an ellipse"); 05938 return d; 05939 }
|
|
Definition at line 5927 of file processor.h. 05928 { 05929 return new TestImageGaussian(); 05930 }
|
|
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 6928 of file processor.cpp. References EMAN::EMData::get_data(), InvalidValueException, nx, ny, EMAN::TestImageProcessor::preprocess(), sqrt(), and EMAN::EMData::update(). 06929 { 06930 preprocess(image); 06931 06932 float sigma = params["sigma"]; 06933 string axis = (const char*)params["axis"]; 06934 float c = params["c"]; 06935 06936 float *dat = image->get_data(); 06937 float r; //this is the distance of pixel from the image center(nx/2, ny/2, nz/2) 06938 float x2, y2, z2; //this is the coordinates of this pixel from image center 06939 for (int k = 0; k < nz; ++k) { 06940 for (int j = 0; j < ny; ++j) { 06941 for (int i = 0; i < nx; ++i, ++dat) { 06942 x2 = (float)( i - nx/2 ); 06943 y2 = (float)( j - ny/2 ); 06944 z2 = (float)( k - nz/2 ); 06945 06946 if(axis==""){ 06947 r = (float)sqrt(x2*x2+y2*y2+z2*z2); 06948 } 06949 else if(axis == "x"){ 06950 float lc = -c; 06951 float rc = c; 06952 r = ( (float)sqrt((x2-lc)*(x2-lc)+y2*y2+z2*z2) + 06953 (float)sqrt((x2-rc)*(x2-rc)+y2*y2+z2*z2) ) /2.0f - c; 06954 } 06955 else if(axis == "y"){ 06956 float lc = -c; 06957 float rc = c; 06958 r = ( (float)sqrt(x2*x2+(y2-lc)*(y2-lc)+z2*z2) + 06959 (float)sqrt(x2*x2+(y2-rc)*(y2-rc)+z2*z2) ) /2.0f - c; 06960 } 06961 else if(axis == "z"){ 06962 if( nz == 1 ){ 06963 throw InvalidValueException(0, "This is a 2D image, no asymmetric feature for z axis"); 06964 } 06965 float lc = -c; 06966 float rc = c; 06967 r = ( (float)sqrt(x2*x2+y2*y2+(z2-lc)*(z2-lc)) + 06968 (float)sqrt(x2*x2+y2*y2+(z2-rc)*(z2-rc)) ) /2.0f - c; 06969 } 06970 else{ 06971 throw InvalidValueException(0, "please specify a valid axis for asymmetric features"); 06972 } 06973 //the amplitude of the pixel is proportional to the distance of this pixel from the center 06974 *dat = (float)gsl_ran_gaussian_pdf((double)r,(double)sigma); 06975 } 06976 } 06977 } 06978 06979 image->update(); 06980 }
|
|
Definition at line 193 of file processor.cpp. |