#include <processor.h>
Inheritance diagram for EMAN::ZGradientProcessor:
Public Member Functions | |
ZGradientProcessor () | |
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.zgradient" |
|
Definition at line 595 of file processor.h. 00595 {}
|
|
Get the descrition of this specific processor. This function must be overwritten by a subclass.
Implements EMAN::Processor. Definition at line 609 of file processor.h. 00610 { 00611 return "Determines the image gradient in the z direction"; 00612 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 597 of file processor.h. 00598 {
00599 return NAME;
00600 }
|
|
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 614 of file processor.h. 00615 { 00616 TypeDict d; 00617 return d; 00618 }
|
|
Definition at line 604 of file processor.h. 00605 { 00606 return new ZGradientProcessor(); 00607 }
|
|
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 9356 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(). 09357 { 09358 if (image->is_complex()) throw ImageFormatException("Cannot edge detect a complex image"); 09359 09360 EMData* e = new EMData(); 09361 int nx = image->get_xsize(); 09362 int ny = image->get_ysize(); 09363 int nz = image->get_zsize(); 09364 09365 if ( nx < 3 || ny < 3 || nz < 3) throw ImageDimensionException("Error - cannot edge detect in the z direction with any dimension being less than three pixels"); 09366 09367 e->set_size(3,3,3); 09368 e->set_value_at(0,0,0,-1); 09369 e->set_value_at(1,0,0,-1); 09370 e->set_value_at(2,0,0,-1); 09371 e->set_value_at(0,1,0,-1); 09372 e->set_value_at(1,1,0,-8); 09373 e->set_value_at(2,1,0,-1); 09374 e->set_value_at(0,2,0,-1); 09375 e->set_value_at(1,2,0,-1); 09376 e->set_value_at(2,2,0,-1); 09377 09378 e->set_value_at(0,0,2,1); 09379 e->set_value_at(1,0,2,1); 09380 e->set_value_at(2,0,2,1); 09381 e->set_value_at(0,1,2,1); 09382 e->set_value_at(1,1,2,8); 09383 e->set_value_at(2,1,2,1); 09384 e->set_value_at(0,2,2,1); 09385 e->set_value_at(1,2,2,1); 09386 e->set_value_at(2,2,2,1); 09387 09388 Region r = Region(-nx/2+1,-ny/2+1,-nz/2+1,nx,ny,nz); 09389 e->clip_inplace(r); 09390 09391 Dict conv_parms; 09392 conv_parms["with"] = e; 09393 image->process_inplace("math.convolution", conv_parms); 09394 09395 delete e; 09396 }
|
|
Definition at line 66 of file processor.cpp. |