Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members

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

ProcessorNEW ()

Static Public Attributes

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 1383 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 1396 of file processor.h.

01397                 {
01398                         return "f(x) = x * x;";
01399                 }

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 1386 of file processor.h.

01387                 {
01388                         return NAME;
01389                 }

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

Definition at line 1390 of file processor.h.

01391                 {
01392                         return new ValueSquaredProcessor();
01393                 }

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

Implements EMAN::RealPixelProcessor.

Definition at line 1404 of file processor.h.

01405                 {
01406                         (*x) *= (*x);
01407                 }


Member Data Documentation

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

Definition at line 82 of file processor.cpp.


The documentation for this class was generated from the following files:
Generated on Tue Jun 11 13:42:17 2013 for EMAN2 by  doxygen 1.3.9.1