#include <aligner.h>
Inheritance diagram for EMAN::RotateTranslateBestAligner:
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 | |
Aligner * | NEW () |
Static Public Attributes | |
const string | NAME = "rotate_translate_best" |
maxshift | Maximum translation in pixels | |
snr | signal to noise ratio array |
Definition at line 434 of file aligner.h.
|
Implements EMAN::Aligner. Definition at line 440 of file aligner.h. References align(). 00441 { 00442 return align(this_img, to_img, "frc", Dict()); 00443 }
|
|
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.
Implements EMAN::Aligner. |
|
Implements EMAN::Aligner. Definition at line 450 of file aligner.h. 00451 { 00452 return "Full 2D alignment using 'Rotational' and 'Translational', also incorporates 2D 'Refine' alignments."; 00453 }
|
|
Get the Aligner's name. Each Aligner is identified by a unique name.
Implements EMAN::Aligner. Definition at line 445 of file aligner.h. 00446 {
00447 return NAME;
00448 }
|
|
Implements EMAN::Aligner. Definition at line 460 of file aligner.h. References EMAN::TypeDict::put(). 00461 { 00462 TypeDict d; 00463 d.put("maxshift", EMObject::INT, "Maximum translation in pixels"); 00464 d.put("snr", EMObject::FLOATARRAY, "signal to noise ratio array"); 00465 return d; 00466 }
|
|
Definition at line 455 of file aligner.h. 00456 { 00457 return new RotateTranslateBestAligner(); 00458 }
|
|
Definition at line 59 of file aligner.cpp. |