#include <processor.h>
Inheritance diagram for EMAN::XGradientProcessor:
Public Member Functions | |
XGradientProcessor () | |
string | get_name () const |
Get the processor's name. | |
void | process_inplace (EMData *image) |
To process an image in-place. | |
string | get_desc () const |
Get the descrition of this specific processor. | |
TypeDict | get_param_types () const |
Get processor parameter information in a dictionary. | |
Static Public Member Functions | |
Processor * | NEW () |
Static Public Attributes | |
const string | NAME = "math.edge.xgradient" |
Definition at line 529 of file processor.h.
|
Definition at line 532 of file processor.h. 00532 {}
|
|
Get the descrition of this specific processor. This function must be overwritten by a subclass.
Implements EMAN::Processor. Definition at line 546 of file processor.h. 00547 { 00548 return "Determines the image gradient in the x direction"; 00549 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 534 of file processor.h. 00535 {
00536 return NAME;
00537 }
|
|
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 551 of file processor.h. 00552 { 00553 TypeDict d; 00554 return d; 00555 }
|
|
Definition at line 541 of file processor.h. 00542 { 00543 return new XGradientProcessor(); 00544 }
|
|
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 9150 of file processor.cpp. References EMAN::EMData::clip_inplace(), EMAN::EMData::get_xsize(), EMAN::EMData::get_ysize(), EMAN::EMData::get_zsize(), ImageDimensionException, ImageFormatException, EMAN::EMData::is_complex(), nx, ny, EMAN::EMData::process_inplace(), EMAN::EMData::set_size(), and EMAN::EMData::set_value_at(). 09151 { 09152 if (image->is_complex()) throw ImageFormatException("Cannot edge detect a complex image"); 09153 09154 EMData* e = new EMData(); 09155 int nx = image->get_xsize(); 09156 int ny = image->get_ysize(); 09157 int nz = image->get_zsize(); 09158 09159 if ( nz == 1 && ny == 1 ) { 09160 if ( nx < 3 ) throw ImageDimensionException("Error - cannot edge detect an image with less than three pixels"); 09161 09162 e->set_size(3,1,1); 09163 e->set_value_at(0,-1); 09164 e->set_value_at(2, 1); 09165 09166 Region r = Region(-nx/2+1,nx); 09167 e->clip_inplace(r); 09168 } else if ( nz == 1 ) { 09169 if ( nx < 3 || ny < 3 ) throw ImageDimensionException("Error - cannot edge detect an image with less than three pixels"); 09170 e->set_size(3,3,1); 09171 e->set_value_at(0,0,-1); 09172 e->set_value_at(0,1,-2); 09173 e->set_value_at(0,2,-1); 09174 09175 e->set_value_at(2,0,1); 09176 e->set_value_at(2,1,2); 09177 e->set_value_at(2,2,1); 09178 Region r = Region(-nx/2+1,-ny/2+1,nx,ny); 09179 e->clip_inplace(r); 09180 } else { 09181 if ( nx < 3 || ny < 3 || nz < 3) throw ImageDimensionException("Error - cannot edge detect an image with less than three pixels"); 09182 e->set_size(3,3,3); 09183 e->set_value_at(0,0,0,-1); 09184 e->set_value_at(0,1,0,-1); 09185 e->set_value_at(0,2,0,-1); 09186 e->set_value_at(0,0,1,-1); 09187 e->set_value_at(0,1,1,-8); 09188 e->set_value_at(0,2,1,-1); 09189 e->set_value_at(0,0,2,-1); 09190 e->set_value_at(0,1,2,-1); 09191 e->set_value_at(0,2,2,-1); 09192 09193 e->set_value_at(2,0,0,1); 09194 e->set_value_at(2,1,0,1); 09195 e->set_value_at(2,2,0,1); 09196 e->set_value_at(2,0,1,1); 09197 e->set_value_at(2,1,1,8); 09198 e->set_value_at(2,2,1,1); 09199 e->set_value_at(2,0,2,1); 09200 e->set_value_at(2,1,2,1); 09201 e->set_value_at(2,2,2,1); 09202 09203 Region r = Region(-nx/2+1,-ny/2+1,-nz/2+1,nx,ny,nz); 09204 e->clip_inplace(r); 09205 } 09206 09207 Dict conv_parms; 09208 conv_parms["with"] = e; 09209 image->process_inplace("math.convolution", conv_parms); 09210 image->process_inplace("xform.phaseorigin.tocenter"); 09211 09212 delete e; 09213 }
|
|
Definition at line 64 of file processor.cpp. |