EMAN2
Public Member Functions | Static Public Member Functions | Static Public Attributes | List of all members
EMAN::TestImageScurve Class Reference

Replace a source image with a lumpy S-curve used for alignment testing. More...

#include <processor.h>

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

Public Member Functions

virtual void process_inplace (EMData *image)
 To process an image in-place. More...
 
virtual string get_name () const
 Get the processor's name. More...
 
virtual string get_desc () const
 Get the descrition of this specific processor. More...
 
virtual TypeDict get_param_types () const
 Get processor parameter information in a dictionary. More...
 
- Public Member Functions inherited from EMAN::Processor
virtual ~Processor ()
 
virtual EMDataprocess (const EMData *const image)
 To proccess an image out-of-place. More...
 
virtual void process_list_inplace (vector< EMData * > &images)
 To process multiple images using the same algorithm. More...
 
virtual Dict get_params () const
 Get the processor parameters in a key/value dictionary. More...
 
virtual void set_params (const Dict &new_params)
 Set the processor parameters using a key/value dictionary. More...
 

Static Public Member Functions

static ProcessorNEW ()
 
- Static Public Member Functions inherited from EMAN::TestImageProcessor
static string get_group_desc ()
 
- Static Public Member Functions inherited from EMAN::Processor
static string get_group_desc ()
 Get the description of this group of processors. More...
 
static void EMFourierFilterInPlace (EMData *fimage, Dict params)
 Compute a Fourier-filter processed image in place. More...
 
static EMDataEMFourierFilter (EMData *fimage, Dict params)
 Compute a Fourier-processor processed image without altering the original image. More...
 

Static Public Attributes

static const string NAME = "testimage.scurve"
 

Additional Inherited Members

- Public Types inherited from EMAN::Processor
enum  fourier_filter_types {
  TOP_HAT_LOW_PASS , TOP_HAT_HIGH_PASS , TOP_HAT_BAND_PASS , TOP_HOMOMORPHIC ,
  GAUSS_LOW_PASS , GAUSS_HIGH_PASS , GAUSS_BAND_PASS , GAUSS_INVERSE ,
  GAUSS_HOMOMORPHIC , BUTTERWORTH_LOW_PASS , BUTTERWORTH_HIGH_PASS , BUTTERWORTH_HOMOMORPHIC ,
  KAISER_I0 , KAISER_SINH , KAISER_I0_INVERSE , KAISER_SINH_INVERSE ,
  SHIFT , TANH_LOW_PASS , TANH_HIGH_PASS , TANH_HOMOMORPHIC ,
  TANH_BAND_PASS , RADIAL_TABLE , CTF_
}
 Fourier filter Processor type enum. More...
 
- Protected Member Functions inherited from EMAN::TestImageProcessor
void preprocess (EMData *image)
 
- Protected Attributes inherited from EMAN::TestImageProcessor
int nx
 
int ny
 
int nz
 
- Protected Attributes inherited from EMAN::Processor
Dict params
 

Detailed Description

Replace a source image with a lumpy S-curve used for alignment testing.

Definition at line 8444 of file processor.h.

Member Function Documentation

◆ get_desc()

virtual string EMAN::TestImageScurve::get_desc ( ) const
inlinevirtual

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

8455 {
8456 return "Replace a source image with a lumpy S-curve used for alignment testing";
8457 }

◆ get_name()

virtual string EMAN::TestImageScurve::get_name ( ) const
inlinevirtual

Get the processor's name.

Each processor is identified by a unique name.

Returns
The processor's name.

Implements EMAN::Processor.

Definition at line 8449 of file processor.h.

8450 {
8451 return NAME;
8452 }
static const string NAME
Definition: processor.h:8470

References NAME.

◆ get_param_types()

virtual TypeDict EMAN::TestImageScurve::get_param_types ( ) const
inlinevirtual

Get processor parameter information in a dictionary.

Each parameter has one record in the dictionary. Each record contains its name, data-type, and description.

Returns
A dictionary containing the parameter info.

Reimplemented from EMAN::Processor.

Definition at line 8464 of file processor.h.

8465 {
8466 TypeDict d;
8467 return d;
8468 }
TypeDict is a dictionary to store <string, EMObject::ObjectType> pair.
Definition: emobject.h:305

◆ NEW()

static Processor * EMAN::TestImageScurve::NEW ( )
inlinestatic

Definition at line 8459 of file processor.h.

8460 {
8461 return new TestImageScurve();
8462 }
Replace a source image with a lumpy S-curve used for alignment testing.
Definition: processor.h:8445

◆ process_inplace()

void TestImageScurve::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
imageThe image to be processed.

Implements EMAN::Processor.

Definition at line 9483 of file processor.cpp.

9484{
9485 preprocess(image);
9486
9487 int dim_size = image->get_ndim();
9488 if( 2 != dim_size ) {
9489 throw ImageDimensionException("works for 2D images only");
9490 }
9491
9492 int nx = image->get_xsize();
9493 int ny = image->get_ysize();
9494 image->to_zero();
9495
9496 for (int i=0; i<100; i++) {
9497 int x=static_cast<int>( nx/2+nx/6.0*sin(i*2.0*3.14159/100.0) );
9498 int y=ny/4+i*ny/200;
9499 for (int xx=x-nx/10; xx<x+nx/10; xx++) {
9500 for (int yy=y-ny/10; yy<y+ny/10; yy++) {
9501 (*image)(xx,yy)+=exp(-pow(static_cast<float>(hypot(xx-x,yy-y))*30.0f/nx,2.0f))*(sin(static_cast<float>((xx-x)*(yy-y)))+.5f);
9502 }
9503 }
9504 }
9505
9506 image->update();
9507}
void preprocess(EMData *image)
Definition: processor.cpp:8923
#define ImageDimensionException(desc)
Definition: exception.h:166
#define y(i, j)
Definition: projector.cpp:1516
#define x(i)
Definition: projector.cpp:1517

References ImageDimensionException, EMAN::TestImageProcessor::nx, EMAN::TestImageProcessor::ny, EMAN::TestImageProcessor::preprocess(), x, and y.

Member Data Documentation

◆ NAME

const string TestImageScurve::NAME = "testimage.scurve"
static

Definition at line 8470 of file processor.h.

Referenced by get_name().


The documentation for this class was generated from the following files: