Class OccupancyGridMap


  • public class OccupancyGridMap
    extends java.lang.Object
    • Constructor Detail

      • OccupancyGridMap

        public OccupancyGridMap​(int width,
                                int height,
                                double freeThreshold,
                                double occupiedThreshold,
                                double resolution)
    • Method Detail

      • getWidth

        public int getWidth()
      • getHeight

        public int getHeight()
      • getResolution

        public double getResolution()
      • getFreeThreshold

        public double getFreeThreshold()
      • getOccupiedThreshold

        public double getOccupiedThreshold()
      • setOccupied

        public void setOccupied​(int x,
                                int y,
                                int occupied)
      • getOccupied

        public int getOccupied​(int x,
                               int y)
      • isOccupied

        public boolean isOccupied​(int x,
                                  int y)
      • isFree

        public boolean isFree​(int x,
                              int y)