net.aerith.misao.image.filter
Class MeridianImageTransformFilter

java.lang.Object
  |
  +--net.aerith.misao.image.filter.Filter
        |
        +--net.aerith.misao.image.filter.MeridianImageTransformFilter

public class MeridianImageTransformFilter
extends Filter

The MeridianImageTransformFilter is an image processing filter to transform the meridian image. The result is stored in the new image.


Field Summary
protected  double decl
          The declination of the center.
protected  double pixel_size
          The pixel size in arcsec.
protected  double ra_interval
          The R.A.
 
Fields inherited from class net.aerith.misao.image.filter.Filter
monitor_set
 
Constructor Summary
MeridianImageTransformFilter(double decl, double pixel_size, double ra_interval)
          Constructs a filter.
 
Method Summary
 MonoImage operate(MonoImage image)
          Operates the image processing filter and stores the result into the new image buffer.
 
Methods inherited from class net.aerith.misao.image.filter.Filter
addMonitor, setMonitor
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

decl

protected double decl
The declination of the center.

pixel_size

protected double pixel_size
The pixel size in arcsec.

ra_interval

protected double ra_interval
The R.A. interval in second.
Constructor Detail

MeridianImageTransformFilter

public MeridianImageTransformFilter(double decl,
                                    double pixel_size,
                                    double ra_interval)
Constructs a filter.
Parameters:
decl - the declination of the center.
pixel_size - the pixel size in arcsec.
ra_interval - the R.A. interval in second.
Method Detail

operate

public MonoImage operate(MonoImage image)
Operates the image processing filter and stores the result into the new image buffer.
Overrides:
operate in class Filter
Parameters:
image - the original image to process.
Returns:
the new image buffer.