#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 | |
Processor * | NEW () |
Static Public Attributes | |
const string | NAME = "eman1.filter.highpass.gaussian" |
Protected Member Functions | |
void | create_radial_func (vector< float > &radial_mask) const |
Definition at line 1030 of file processor.h.
|
Implements EMAN::FourierProcessor. Definition at line 1116 of file processor.cpp. 01117 { 01118 Assert(radial_mask.size() > 0); 01119 float x = 0.0f , step = 0.5f/radial_mask.size(); 01120 for (size_t i = 0; i < radial_mask.size(); i++) { 01121 radial_mask[i] = 1.0f - exp(-x * x / (highpass * highpass)); 01122 x += step; 01123 } 01124 }
|
|
Get the descrition of this specific processor. This function must be overwritten by a subclass.
Implements EMAN::Processor. Definition at line 1042 of file processor.h. 01043 { 01044 return "processor radial function: f(x) = 1.0-exp(-x*x/(highpass*highpass);"; 01045 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 1033 of file processor.h. 01034 {
01035 return NAME;
01036 }
|
|
Definition at line 1037 of file processor.h. 01038 { 01039 return new HighpassGaussProcessor(); 01040 }
|
|
Definition at line 74 of file processor.cpp. |