#include <processor.h>
Inheritance diagram for EMAN::ComplexNormPixel:
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 = "complex.normpixels" |
Protected Member Functions | |
void | process_pixel (float *x) const |
ie - amp=1, phase=unmodified. Useful for performing phase-residual-like computations with dot products.
Definition at line 2701 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 2713 of file processor.h. 02714 { 02715 return "Each Fourier pixel will be normalized. ie - amp=1, phase=unmodified. Useful for performing phase-residual-like computations with dot products."; 02716 }
|
|
Get the processor's name. Each processor is identified by a unique name.
Implements EMAN::Processor. Definition at line 2704 of file processor.h. 02705 {
02706 return NAME;
02707 }
|
|
Definition at line 2708 of file processor.h. 02709 { 02710 return new ComplexNormPixel(); 02711 }
|
|
Implements EMAN::ComplexPixelProcessor. Definition at line 2721 of file processor.h. References x. 02722 { 02723 *x=1.0; 02724 }
|
|
Definition at line 111 of file processor.cpp. |