Blame view

src/jsky/image/BasicImageReadableProcessor.java 1.06 KB
fe0fb87e   Elodie Bourrec   First push to cre...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
 * ESO Archive
 *
 * $Id: BasicImageReadableProcessor.java,v 1.1.1.1 2009/02/17 22:24:08 abrighto Exp $
 *
 * who             when        what
 * --------------  ----------  ----------------------------------------
 * Frank Tanner   2001/12/19  Created
 */

package jsky.image;

import java.awt.geom.Rectangle2D;


/**
 * Responsible for providing read only information for image processing.
 *
 *
 * @version $Revision: 1.1.1.1 $
 * @author Franklin R. Tanner
 */
public abstract interface BasicImageReadableProcessor {

    /**
     * Return the image processor object.
     *
     * @return The Object responsible for most image transformations
     * 		that processes PlanarImages.
     * @see javax.media.jai.PlanarImage
     */
    public ImageProcessor getImageProcessor();

    /**
     * Return a rectangle describing the visible area of the image
     * (in user coordinates).
     *
     * @return User Coordinates of retangle.  Note, this may be a
     *			a SuperRectangle if the PlanarImage is non-rectangular.
     */
    public Rectangle2D.Double getVisibleArea();
}