#include <processor_sparx.h>
Inheritance diagram for EMAN::NewBandpassGaussProcessor:
Public Member Functions | |
string | get_name () const |
Get the processor's name. | |
string | get_desc () const |
Get the descrition of this specific processor. | |
void | process_inplace (EMData *image) |
To process an image in-place. | |
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 = "filter.bandpass.gauss" |
Definition at line 289 of file processor_sparx.h.
|
Get the descrition of this specific processor. This function must be overwritten by a subclass.
Implements EMAN::Processor. Definition at line 296 of file processor_sparx.h.
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 292 of file processor_sparx.h. References NAME. 00293 { return NAME; }
|
|
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::NewFourierProcessor. Definition at line 305 of file processor_sparx.h. References EMAN::EMObject::FLOAT, EMAN::NewFourierProcessor::get_param_types(), and EMAN::TypeDict::put(). 00306 { 00307 TypeDict d = NewFourierProcessor::get_param_types(); 00308 d.put("center", EMObject::FLOAT, "Gaussian center."); 00309 return d; 00310 }
|
|
Definition at line 294 of file processor_sparx.h.
|
|
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 300 of file processor_sparx.h. References EMAN::Processor::EMFourierFilterInPlace(), EMAN::Processor::GAUSS_BAND_PASS, EMAN::Processor::params, and EMAN::NewFourierProcessor::preprocess(). 00300 { 00301 params["filter_type"] = GAUSS_BAND_PASS; 00302 preprocess(image); 00303 EMFourierFilterInPlace(image, params); 00304 }
|
|
Definition at line 312 of file processor_sparx.h. Referenced by get_name(). |