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

EMAN::GradientRemoverProcessor Class Reference

Gradient remover, does a rough plane fit to find linear gradients. More...

#include <processor.h>

Inheritance diagram for EMAN::GradientRemoverProcessor:

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

Collaboration graph
[legend]
List of all members.

Public Member Functions

void process_inplace (EMData *image)
 To process an image in-place.
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.lineargradientfix"

Detailed Description

Gradient remover, does a rough plane fit to find linear gradients.

Definition at line 3624 of file processor.h.


Member Function Documentation

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

03639                 {
03640                         return "Gradient remover, does a rough plane fit to find linear gradients.";
03641                 }

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

References NAME.

Referenced by process_inplace().

03630                 {
03631                         return NAME;
03632                 }

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

Definition at line 3633 of file processor.h.

03634                 {
03635                         return new GradientRemoverProcessor();
03636                 }

void GradientRemoverProcessor::process_inplace EMData image  )  [virtual]
 

To process an image in-place.

For those processors which can only be processed out-of-place, override this function to just print out some error message to remind user call the out-of-place version.

Parameters:
image The image to be processed.

Implements EMAN::Processor.

Definition at line 2657 of file processor.cpp.

References b, EMAN::Util::calc_least_square_fit(), EMAN::EMData::get_data(), get_name(), EMAN::EMData::get_xsize(), EMAN::EMData::get_ysize(), EMAN::EMData::get_zsize(), ImageDimensionException, LOGERR, LOGWARN, and EMAN::EMData::update().

02658 {
02659         if (!image) {
02660                 LOGWARN("NULL Image");
02661                 return;
02662         }
02663 
02664         int nz = image->get_zsize();
02665         if (nz > 1) {
02666                 LOGERR("%s Processor doesn't support 3D model", get_name().c_str());
02667                 throw ImageDimensionException("3D model not supported");
02668         }
02669 
02670         int nx = image->get_xsize();
02671         int ny = image->get_ysize();
02672         float *dy = new float[ny];
02673         float m = 0;
02674         float b = 0;
02675         float sum_y = 0;
02676         float *data = image->get_data();
02677 
02678         for (int i = 0; i < ny; i++) {
02679                 Util::calc_least_square_fit(nx, 0, data + i * nx, &m, &b, false);
02680                 dy[i] = b;
02681                 sum_y += m;
02682         }
02683 
02684         float mean_y = sum_y / ny;
02685         float sum_x = 0;
02686         Util::calc_least_square_fit(ny, 0, dy, &sum_x, &b, false);
02687 
02688         for (int j = 0; j < ny; j++) {
02689                 for (int i = 0; i < nx; i++) {
02690                         data[i + j * nx] -= i * sum_x + j * mean_y + b;
02691                 }
02692         }
02693 
02694         image->update();
02695 }


Member Data Documentation

const string GradientRemoverProcessor::NAME = "math.lineargradientfix" [static]
 

Definition at line 3643 of file processor.h.

Referenced by get_name().


The documentation for this class was generated from the following files:
Generated on Mon Jul 19 13:06:54 2010 for EMAN2 by  doxygen 1.4.4