#include <processor.h>
Inheritance diagram for EMAN::ACFCenterProcessor:
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 = "xform.centeracf" |
Definition at line 5085 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 5100 of file processor.h. 05101 { 05102 return "Center image using self-convolution."; 05103 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 5090 of file processor.h. 05091 {
05092 return NAME;
05093 }
|
|
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 5105 of file processor.h. 05106 { 05107 TypeDict d; 05108 return d; 05109 }
|
|
Definition at line 5095 of file processor.h. 05096 { 05097 return new ACFCenterProcessor(); 05098 }
|
|
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 5642 of file processor.cpp. References EMAN::EMData::align(), EMAN::EMData::get_attr(), EMAN::EMData::get_ndim(), EMAN::Transform::get_trans(), EMAN::EMData::get_xsize(), LOGWARN, EMAN::EMData::set_attr(), t, and EMAN::EMData::translate(). 05643 { 05644 if (!image) { 05645 LOGWARN("NULL Image"); 05646 return; 05647 } 05648 05649 Dict params1; 05650 params1["intonly"] = 1; 05651 params1["maxshift"] = image->get_xsize() / 4; 05652 EMData* aligned = image->align("translational", 0, params1); 05653 if ( image->get_ndim() == 3 ) { 05654 Transform* t = aligned->get_attr("xform.align3d"); 05655 image->translate(t->get_trans()); 05656 image->set_attr("xform.align3d",t); 05657 delete t; 05658 } 05659 else { 05660 // assumption is the image is 2D which may be false 05661 Transform* t = aligned->get_attr("xform.align2d"); 05662 image->translate(t->get_trans()); 05663 image->set_attr("xform.align2d",t); 05664 delete t; 05665 } 05666 05667 delete aligned; 05668 05669 }
|
|
Definition at line 172 of file processor.cpp. |