This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Functions | |
void | process_inplace (const string &processorname, const Dict ¶ms=Dict()) |
Apply a processor with its parameters on this image. | |
void | process_inplace (Processor *p) |
Call the process_inplace with an instance od Processor, usually this instancecan be get by (in Python) Processors.get("name", {'k':v, 'k':v}). | |
EMData * | process (const string &processorname, const Dict ¶ms=Dict()) const |
Apply a processor with its parameters on a copy of this image, return result as a a new image. | |
EMData * | process (Processor *p) const |
Call the process with an instance od Processor, usually this instance can be get by (in Python) Processors.get("name", {'k':v, 'k':v}). | |
float | cmp (const string &cmpname, EMData *with, const Dict ¶ms=Dict()) |
Compare this image with another image. | |
EMData * | align (const string &aligner_name, EMData *to_img, const Dict ¶ms=Dict(), const string &cmp_name="", const Dict &cmp_params=Dict()) |
Align this image with another image and return the result image. | |
vector< Dict > | xform_align_nbest (const string &aligner_name, EMData *to_img, const Dict ¶ms=Dict(), const unsigned int nsoln=1, const string &cmp_name="dot", const Dict &cmp_params=Dict()) |
Align this image with another image, return the parameters of the "n best" solutions See Aligner::xform_align_nbest for more comments. | |
EMData * | project (const string &projector_name, const Dict ¶ms=Dict()) |
Calculate the projection of this image and return the result. | |
EMData * | project (const string &projector_name, const Transform &t3d) |
Calculate the projection of this image and return the result. | |
EMData * | backproject (const string &projector_name, const Dict ¶ms=Dict()) |
Calculate the backprojection of this image (stack) and return the result. |
|
|
Calculate the backprojection of this image (stack) and return the result.
|
|
Compare this image with another image.
|
|
Call the process with an instance od Processor, usually this instance can be get by (in Python) Processors.get("name", {'k':v, 'k':v}).
|
|
Apply a processor with its parameters on a copy of this image, return result as a a new image. The returned image may or may not be the same size as this image.
|
|
Call the process_inplace with an instance od Processor, usually this instancecan be get by (in Python) Processors.get("name", {'k':v, 'k':v}).
Referenced by EMAN::EMData::get_data(), EMAN::NSigmaClampingProcessor::process_inplace(), and EMAN::Processor::process_list_inplace(). |
|
Apply a processor with its parameters on this image.
|
|
Calculate the projection of this image and return the result.
|
|
Calculate the projection of this image and return the result.
|
|
Align this image with another image, return the parameters of the "n best" solutions See Aligner::xform_align_nbest for more comments.
|