#include <processor.h>
Inheritance diagram for EMAN::FFTProcessor:
Public Member Functions | |
void | process_inplace (EMData *image) |
To process an image in-place. | |
string | get_name () const |
Get the processor's name. | |
TypeDict | get_param_types () const |
Get processor parameter information in a dictionary. | |
string | get_desc () const |
Get the descrition of this specific processor. | |
Static Public Member Functions | |
Processor * | NEW () |
Static Public Attributes | |
const string | NAME = "basis.fft" |
dir | 1 for forward transform, -1 for inverse transform, forward transform by default |
Definition at line 6742 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 6764 of file processor.h. 06765 { 06766 return "Computes the DFFT (Discrete Fast Fourier Transform) of an image"; 06767 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 6747 of file processor.h. 06748 {
06749 return NAME;
06750 }
|
|
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 6757 of file processor.h. References EMAN::TypeDict::put(). 06758 { 06759 TypeDict d; 06760 d.put("dir", EMObject::INT, "1 for forward transform, -1 for inverse transform"); 06761 return d; 06762 }
|
|
Definition at line 6752 of file processor.h. 06753 { 06754 return new FFTProcessor(); 06755 }
|
|
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 7949 of file processor.cpp. References EMAN::EMData::do_fft_inplace(), EMAN::EMData::do_ift_inplace(), and EMAN::Dict::has_key(). 07950 { 07951 if( params.has_key("dir") ) { 07952 if ((int)params["dir"]==-1) { 07953 image->do_ift_inplace(); 07954 } 07955 else { 07956 image->do_fft_inplace(); 07957 } 07958 } 07959 }
|
|
Definition at line 214 of file processor.cpp. |