Class MatrixOfList<T>

java.lang.Object
boofcv.struct.feature.MatrixOfList<T>

public class MatrixOfList<T> extends Object
A matrix of Lists for containing items in a grid.
  • Field Details

    • grid

      public List<T>[] grid
    • width

      public int width
    • height

      public int height
  • Constructor Details

    • MatrixOfList

      public MatrixOfList(int width, int height)
  • Method Details

    • reshape

      public void reshape(int width, int height)
    • reset

      public void reset()
    • get

      public List<T> get(int x, int y)
    • getWidth

      public int getWidth()
    • getHeight

      public int getHeight()
    • createSingleList

      public List<T> createSingleList()
    • isInBounds

      public boolean isInBounds(int x, int y)