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

EMAN::VerticalStripeProcessor Class Reference

Tries to fix images scanned on the zeiss for poor ccd normalization. More...

#include <processor.h>

Inheritance diagram for EMAN::VerticalStripeProcessor:

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

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

ProcessorNEW ()

Static Public Attributes

const string NAME = "math.verticalstripefix"

Detailed Description

Tries to fix images scanned on the zeiss for poor ccd normalization.

Definition at line 3537 of file processor.h.


Member Function Documentation

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

03553                 {
03554                         return "Tries to fix images scanned on the zeiss for poor ccd normalization.";
03555                 }

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

03543                 {
03544                         return NAME;
03545                 }

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

Definition at line 3547 of file processor.h.

03548                 {
03549                         return new VerticalStripeProcessor();
03550                 }

void VerticalStripeProcessor::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 2795 of file processor.cpp.

References data, EMAN::EMData::get_attr(), EMAN::EMData::get_data(), EMAN::EMData::get_xsize(), EMAN::EMData::get_ysize(), EMAN::EMData::get_zsize(), LOGWARN, nx, ny, and EMAN::EMData::update().

02796 {
02797         if (!image) {
02798                 LOGWARN("NULL Image");
02799                 return;
02800         }
02801 
02802         int nx = image->get_xsize();
02803         int ny = image->get_ysize();
02804         int nz = image->get_zsize();
02805 
02806         float *data = image->get_data();
02807         float sigma = image->get_attr("sigma");
02808 
02809         for (int k = 0; k < nz; k++) {
02810                 for (int i = 0; i < nx; i++) {
02811                         double sum = 0;
02812                         for (int j = ny / 4; j < 3 * ny / 4; j++) {
02813                                 sum += data[i + j * nx];
02814                         }
02815 
02816                         float mean = (float)sum / (ny / 2);
02817                         for (int j = 0; j < ny; j++) {
02818                                 data[i + j * nx] = (data[i + j * nx] - mean) / sigma;
02819                         }
02820                 }
02821         }
02822 
02823         image->update();
02824 }


Member Data Documentation

const string VerticalStripeProcessor::NAME = "math.verticalstripefix" [static]
 

Definition at line 127 of file processor.cpp.


The documentation for this class was generated from the following files:
Generated on Thu Dec 9 13:48:00 2010 for EMAN2 by  doxygen 1.3.9.1