#include <aligner.h>
Inheritance diagram for EMAN::RotateFlipAligner:
Public Member Functions | |
virtual EMData * | align (EMData *this_img, EMData *to_img, const string &cmp_name="dot", const Dict &cmp_params=Dict()) const |
To align 'this_img' with another image passed in through its parameters. | |
virtual EMData * | align (EMData *this_img, EMData *to_img) const |
virtual string | get_name () const |
Get the Aligner's name. | |
virtual string | get_desc () const |
virtual TypeDict | get_param_types () const |
Static Public Member Functions | |
static Aligner * | NEW () |
static TypeDict | static_get_param_types () |
Static Public Attributes | |
static const string | NAME = "rotate_flip" |
imask | ||
rfp_mode | Either 0,1 or 2. A temporary flag for testing the rotational foot print |
Definition at line 530 of file aligner.h.
virtual EMData* EMAN::RotateFlipAligner::align | ( | EMData * | this_img, | |
EMData * | to_img | |||
) | const [inline, virtual] |
Implements EMAN::Aligner.
Definition at line 535 of file aligner.h.
References align().
00536 { 00537 return align(this_img, to_img, "dot", Dict()); 00538 }
EMData * RotateFlipAligner::align | ( | EMData * | this_img, | |
EMData * | to_img, | |||
const string & | cmp_name = "dot" , |
|||
const Dict & | cmp_params = Dict() | |||
) | const [virtual] |
To align 'this_img' with another image passed in through its parameters.
The alignment uses a user-given comparison method to compare the two images. If none is given, a default one is used.
this_img | The image to be compared. | |
to_img | 'this_img" is aligned with 'to_img'. | |
cmp_name | The comparison method to compare the two images. | |
cmp_params | The parameter dictionary for comparison method. |
Implements EMAN::Aligner.
Definition at line 813 of file aligner.cpp.
References EMAN::EMData::align(), EMAN::EMData::cmp(), cmp1(), cmp2(), EMAN::EMData::get_attr(), EMAN::Aligner::params, EMAN::EMData::process(), EMAN::EMData::process_inplace(), EMAN::EMData::set_attr(), EMAN::Dict::set_default(), and t.
Referenced by align().
00815 { 00816 Dict rot_params("rfp_mode",params.set_default("rfp_mode",0)); 00817 EMData *r1 = this_img->align("rotational", to, rot_params,cmp_name, cmp_params); 00818 00819 00820 EMData* flipped =to->process("xform.flip", Dict("axis", "x")); 00821 EMData *r2 = this_img->align("rotational", flipped,rot_params, cmp_name, cmp_params); 00822 Transform* t = r2->get_attr("xform.align2d"); 00823 t->set_mirror(true); 00824 r2->set_attr("xform.align2d",t); 00825 delete t; 00826 00827 float cmp1 = r1->cmp(cmp_name, to, cmp_params); 00828 float cmp2 = r2->cmp(cmp_name, flipped, cmp_params); 00829 00830 delete flipped; flipped = 0; 00831 00832 EMData *result = 0; 00833 00834 if (cmp1 < cmp2) { 00835 if( r2 ) 00836 { 00837 delete r2; 00838 r2 = 0; 00839 } 00840 result = r1; 00841 } 00842 else { 00843 if( r1 ) 00844 { 00845 delete r1; 00846 r1 = 0; 00847 } 00848 result = r2; 00849 result->process_inplace("xform.flip",Dict("axis","x")); 00850 } 00851 00852 return result; 00853 }
virtual string EMAN::RotateFlipAligner::get_desc | ( | ) | const [inline, virtual] |
Implements EMAN::Aligner.
Definition at line 544 of file aligner.h.
00545 { 00546 return "Performs two rotational alignments, one using the original image and one using the hand-flipped image. Decides which alignment is better using a comparitor and returns it"; 00547 }
virtual string EMAN::RotateFlipAligner::get_name | ( | ) | const [inline, virtual] |
virtual TypeDict EMAN::RotateFlipAligner::get_param_types | ( | ) | const [inline, virtual] |
Implements EMAN::Aligner.
Definition at line 554 of file aligner.h.
References static_get_param_types().
00555 { 00556 return static_get_param_types(); 00557 }
static Aligner* EMAN::RotateFlipAligner::NEW | ( | ) | [inline, static] |
static TypeDict EMAN::RotateFlipAligner::static_get_param_types | ( | ) | [inline, static] |
Definition at line 559 of file aligner.h.
References EMAN::EMObject::INT, and EMAN::TypeDict::put().
Referenced by get_param_types().
00559 { 00560 TypeDict d; 00561 00562 d.put("imask", EMObject::INT); 00563 d.put("rfp_mode", EMObject::INT,"Either 0,1 or 2. A temporary flag for testing the rotational foot print"); 00564 return d; 00565 }
const string RotateFlipAligner::NAME = "rotate_flip" [static] |