EMAN::ValueSquaredProcessor Class Reference

Do a square operation on image, f(x) = x * x;. More...

#include <processor.h>

Inheritance diagram for EMAN::ValueSquaredProcessor:

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

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.squared"

Protected Member Functions

void process_pixel (float *x) const

Detailed Description

Do a square operation on image, f(x) = x * x;.

Definition at line 1410 of file processor.h.


Member Function Documentation

string EMAN::ValueSquaredProcessor::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 1423 of file processor.h.

01424                 {
01425                         return "f(x) = x * x;";
01426                 }

string EMAN::ValueSquaredProcessor::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 1413 of file processor.h.

References NAME.

01414                 {
01415                         return NAME;
01416                 }

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

Definition at line 1417 of file processor.h.

01418                 {
01419                         return new ValueSquaredProcessor();
01420                 }

void EMAN::ValueSquaredProcessor::process_pixel ( float *  x  )  const [inline, protected, virtual]

Implements EMAN::RealPixelProcessor.

Definition at line 1431 of file processor.h.

01432                 {
01433                         (*x) *= (*x);
01434                 }


Member Data Documentation

const string ValueSquaredProcessor::NAME = "math.squared" [static]

Definition at line 1428 of file processor.h.

Referenced by get_name().


The documentation for this class was generated from the following files:
Generated on Mon Jul 19 12:43:08 2010 for EMAN2 by  doxygen 1.4.7