occupancygrid
An occupancy grid is a probabilistic representation of an environment used in robotics and autonomous systems. It expresses the environment as a two-dimensional grid of uniformly sized cells, where each cell stores the probability that the corresponding area is occupied by an obstacle. The map is built from sensor measurements and robot motion and is commonly used for navigation, obstacle avoidance, and as a input to SLAM systems.
Each cell holds p(occupied|observations). To facilitate updates, the grid often stores the log-odds of occupancy, L =
Construction and use: The robot's pose is used to transform local measurements into the world frame, and
Advantages and limitations: Occupancy grids are intuitive and easy to implement and integrate with standard planning