public interface GImageSingleBand
| Modifier and Type | Method and Description |
|---|---|
java.lang.Number |
get(int x,
int y) |
float |
getF(int index) |
int |
getHeight() |
ImageSingleBand |
getImage() |
int |
getWidth() |
boolean |
isFloatingPoint() |
void |
set(int index,
float value)
Sets pixel based on pixel value in data array
|
void |
set(int x,
int y,
java.lang.Number num)
Set's pixel value using number.
|
double |
unsafe_getD(int x,
int y)
get which returns a double, has no bounds checking.
|
void |
wrap(ImageSingleBand image) |
void wrap(ImageSingleBand image)
int getWidth()
int getHeight()
boolean isFloatingPoint()
java.lang.Number get(int x,
int y)
void set(int x,
int y,
java.lang.Number num)
x - pixel coordinate x-valuey - pixel coordinate y-valuenum - Value of the pixeldouble unsafe_getD(int x,
int y)
void set(int index,
float value)
float getF(int index)
ImageSingleBand getImage()