EMAN::MinusPeakProcessor Class Reference

peak processor: pixel = pixel - max of values surrounding pixel. More...

#include <processor.h>

Inheritance diagram for EMAN::MinusPeakProcessor:

Inheritance graph
[legend]
Collaboration diagram for EMAN::MinusPeakProcessor:

Collaboration graph
[legend]
List of all members.

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 ProcessorNEW ()

Static Public Attributes

static const string NAME = "math.submax"

Protected Member Functions

void process_pixel (float *pixel, const float *data, int n) const

Detailed Description

peak processor: pixel = pixel - max of values surrounding pixel.

This is a sort of positive peak-finding algorithm.

Definition at line 3089 of file processor.h.


Member Function Documentation

string EMAN::MinusPeakProcessor::get_desc (  )  const [inline, virtual]

Get the descrition of this specific processor.

This function must be overwritten by a subclass.

Returns:
The description of this processor.

Implements EMAN::Processor.

Definition at line 3101 of file processor.h.

03102                 {
03103                         return "peak processor: pixel = pixel - max of values surrounding pixel. This is a sort of positive peak-finding algorithm.";
03104                 }

string EMAN::MinusPeakProcessor::get_name (  )  const [inline, virtual]

Get the processor's name.

Each processor is identified by a unique name.

Returns:
The processor's name.

Implements EMAN::Processor.

Definition at line 3092 of file processor.h.

References NAME.

03093                 {
03094                         return NAME;
03095                 }

static Processor* EMAN::MinusPeakProcessor::NEW (  )  [inline, static]

Definition at line 3096 of file processor.h.

03097                 {
03098                         return new MinusPeakProcessor();
03099                 }

void EMAN::MinusPeakProcessor::process_pixel ( float *  pixel,
const float *  data,
int  n 
) const [inline, protected, virtual]

Implements EMAN::BoxStatProcessor.

Definition at line 3109 of file processor.h.

03110                 {
03111                         float maxval = -FLT_MAX;
03112                         for (int i = 0; i < n; i++)
03113                         {
03114                                 if (data[i] > maxval) {
03115                                         maxval = data[i];
03116                                 }
03117                         }
03118                          *pixel -= maxval;
03119                 }


Member Data Documentation

const string MinusPeakProcessor::NAME = "math.submax" [static]

Definition at line 3106 of file processor.h.

Referenced by get_name().


The documentation for this class was generated from the following files:
Generated on Thu Nov 17 12:46:20 2011 for EMAN2 by  doxygen 1.4.7