EMAN::BooleanProcessor Class Reference

f(x) = 0 if x = 0; f(x) = 1 if x != 0 More...

#include <processor.h>

Inheritance diagram for EMAN::BooleanProcessor:

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

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 = "threshold.notzero"

Protected Member Functions

void process_pixel (float *x) const

Detailed Description

f(x) = 0 if x = 0; f(x) = 1 if x != 0

Definition at line 1217 of file processor.h.


Member Function Documentation

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

01230                 {
01231                         return "f(x) = 0 if x = 0; f(x) = 1 if x != 0;";
01232                 }

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

References NAME.

01221                 {
01222                         return NAME;
01223                 }

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

Definition at line 1224 of file processor.h.

01225                 {
01226                         return new BooleanProcessor();
01227                 }

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

Implements EMAN::RealPixelProcessor.

Definition at line 1237 of file processor.h.

01238                 {
01239                         if (*x != 0)
01240                         {
01241                                 *x = 1.0;
01242                         }
01243                 }


Member Data Documentation

const string BooleanProcessor::NAME = "threshold.notzero" [static]

Definition at line 1234 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:45:58 2011 for EMAN2 by  doxygen 1.4.7