Package org.gvsig.fmap.dal.raster
Interface RasterKernel
public interface RasterKernel
Info given by the raster in a selected row and column
- Author:
- dmartinezizquierdo
-
Method Summary
Modifier and TypeMethodDescriptionintNumber of bands from the rasterintRaster column which is being informedintgetRow()Raster row which is being informedObject[]getValue()Values of the bands in the row and column givenObject[][][]A 3x3 matrix around the row and column given with the values of the bands
-
Method Details
-
getBandCount
int getBandCount()Number of bands from the raster- Returns:
- int
-
getRow
int getRow()Raster row which is being informed- Returns:
- row
-
getColumn
int getColumn()Raster column which is being informed- Returns:
- column
-
getValue
Object[] getValue()Values of the bands in the row and column given- Returns:
- Object[]
-
getValues
Object[][][] getValues()A 3x3 matrix around the row and column given with the values of the bands- Returns:
- Object[][][]
-