#include <processor.h>
Inheritance diagram for EMAN::TestImageProcessor:
Static Public Member Functions | |
static string | get_group_desc () |
Get the description of this group of processors. | |
Protected Member Functions | |
void | preprocess (EMData *image) |
Protected Attributes | |
int | nx |
int | ny |
int | nz |
Definition at line 5887 of file processor.h.
static string EMAN::TestImageProcessor::get_group_desc | ( | ) | [inline, static] |
Get the description of this group of processors.
This function is defined in a parent class. It gives a introduction to a group of processors.
Reimplemented from EMAN::Processor.
Definition at line 5890 of file processor.h.
void TestImageProcessor::preprocess | ( | EMData * | image | ) | [protected] |
Definition at line 6938 of file processor.cpp.
References EMAN::EMData::get_xsize(), EMAN::EMData::get_ysize(), EMAN::EMData::get_zsize(), and LOGWARN.
Referenced by EMAN::TestImageCylinder::process_inplace(), EMAN::TestImageNoiseGauss::process_inplace(), EMAN::TestImageNoiseUniformRand::process_inplace(), EMAN::TestImageEllipse::process_inplace(), EMAN::TestImageHollowEllipse::process_inplace(), EMAN::TestImageCirclesphere::process_inplace(), EMAN::TestImageSquarecube::process_inplace(), EMAN::TestImageSinewaveCircular::process_inplace(), EMAN::TestImageSinewave::process_inplace(), EMAN::TestImageSphericalWave::process_inplace(), EMAN::TestImagePureGaussian::process_inplace(), EMAN::TestImageScurve::process_inplace(), EMAN::TestImageAxes::process_inplace(), EMAN::TestImageGradient::process_inplace(), EMAN::TestImageGaussian::process_inplace(), and EMAN::TestImageLineWave::process_inplace().
06939 { 06940 if (!image) { 06941 LOGWARN("NULL Image"); 06942 return; 06943 } 06944 06945 nx = image->get_xsize(); 06946 ny = image->get_ysize(); 06947 nz = image->get_zsize(); 06948 }
int EMAN::TestImageProcessor::nx [protected] |
Definition at line 5897 of file processor.h.
int EMAN::TestImageProcessor::ny [protected] |
Definition at line 5897 of file processor.h.
int EMAN::TestImageProcessor::nz [protected] |
Definition at line 5897 of file processor.h.