jm.jigl
Interface Image

All Known Implementing Classes:
ComplexImage, GrayImage, RealGrayImage

public interface Image

Image is the interface for ColorImage, ComplexImage, ConvertSignal, DiscreteSignal

In addition, all typed Image classes must support the following typed methods: get set clear ...

See Also:
jigl.image.Image

Method Summary
 Image copy()
          Returns a deep copy of an image
 Image copy(ROI r)
          Method declaration
 java.awt.image.ImageProducer getJavaImage()
          Turns this image into a Java Image (java.awt.Image).
 java.lang.String toString()
          Returns a string representation of an image
 int X()
          Returns the width of the image
 int Y()
          Returns the height of the image
 

Method Detail

X

public int X()
Returns the width of the image


Y

public int Y()
Returns the height of the image


toString

public java.lang.String toString()
Returns a string representation of an image

Overrides:
toString in class java.lang.Object

getJavaImage

public java.awt.image.ImageProducer getJavaImage()
Turns this image into a Java Image (java.awt.Image).

See Also:
java.awt.ImageProducer

copy

public Image copy()
Returns a deep copy of an image


copy

public Image copy(ROI r)
Method declaration

Parameters:
r -
Returns:
See Also: