#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 | |
static Processor * | NEW () |
Static Public Attributes | |
static const string | NAME = "xform.centeracf" |
Definition at line 5159 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 5174 of file processor.h.
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 5164 of file processor.h. References NAME. 05165 { 05166 return NAME; 05167 }
|
|
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 5179 of file processor.h. 05180 { 05181 TypeDict d; 05182 return d; 05183 }
|
|
Definition at line 5169 of file processor.h. 05170 { 05171 return new ACFCenterProcessor(); 05172 }
|
|
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 5714 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(). 05715 { 05716 if (!image) { 05717 LOGWARN("NULL Image"); 05718 return; 05719 } 05720 05721 Dict params1; 05722 params1["intonly"] = 1; 05723 params1["maxshift"] = image->get_xsize() / 4; 05724 EMData* aligned = image->align("translational", 0, params1); 05725 if ( image->get_ndim() == 3 ) { 05726 Transform* t = aligned->get_attr("xform.align3d"); 05727 image->translate(t->get_trans()); 05728 image->set_attr("xform.align3d",t); 05729 delete t; 05730 } 05731 else { 05732 // assumption is the image is 2D which may be false 05733 Transform* t = aligned->get_attr("xform.align2d"); 05734 image->translate(t->get_trans()); 05735 image->set_attr("xform.align2d",t); 05736 delete t; 05737 } 05738 05739 delete aligned; 05740 05741 }
|
|
Definition at line 5185 of file processor.h. Referenced by get_name(). |