#include <processor.h>
Inheritance diagram for EMAN::HighpassGaussProcessor:
Public Member Functions | |
string | get_name () const |
Get the processor's name. | |
string | get_desc () const |
Get the descrition of this specific processor. | |
Static Public Member Functions | |
static Processor * | NEW () |
Static Public Attributes | |
static const string | NAME = "eman1.filter.highpass.gaussian" |
Protected Member Functions | |
void | create_radial_func (vector< float > &radial_mask) const |
Definition at line 1070 of file processor.h.
void HighpassGaussProcessor::create_radial_func | ( | vector< float > & | radial_mask | ) | const [protected, virtual] |
Implements EMAN::FourierProcessor.
Definition at line 1223 of file processor.cpp.
References Assert, EMAN::HighpassFourierProcessor::highpass, and x.
01224 { 01225 Assert(radial_mask.size() > 0); 01226 float x = 0.0f , step = 0.5f/radial_mask.size(); 01227 for (size_t i = 0; i < radial_mask.size(); i++) { 01228 radial_mask[i] = 1.0f - exp(-x * x / (highpass * highpass)); 01229 x += step; 01230 } 01231 }
string EMAN::HighpassGaussProcessor::get_desc | ( | ) | const [inline, virtual] |
Get the descrition of this specific processor.
This function must be overwritten by a subclass.
Implements EMAN::Processor.
Definition at line 1082 of file processor.h.
string EMAN::HighpassGaussProcessor::get_name | ( | ) | const [inline, virtual] |
Get the processor's name.
Each processor is identified by a unique name.
Implements EMAN::Processor.
Definition at line 1073 of file processor.h.
References NAME.
01074 { 01075 return NAME; 01076 }
static Processor* EMAN::HighpassGaussProcessor::NEW | ( | ) | [inline, static] |
Definition at line 1077 of file processor.h.
01078 { 01079 return new HighpassGaussProcessor(); 01080 }
const string HighpassGaussProcessor::NAME = "eman1.filter.highpass.gaussian" [static] |