Interface RasterKernel


public interface RasterKernel
Info given by the raster in a selected row and column
Author:
dmartinezizquierdo
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Number of bands from the raster
    int
    Raster column which is being informed
    int
    Raster row which is being informed
    Values of the bands in the row and column given
    Object[][][]
    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[][][]