elvout / cs393r

CS 393R Graduate Autonomous Robots, Fall 2021 | Autobots
0 stars 0 forks source link

Gaussian Rasterization #54

Closed elvout closed 3 years ago

elvout commented 3 years ago

To speed up the Observation Likelihood Model, we create a rasterized lookup table (parametrized on x, y) of the probability space.

TODO: paper does not parameterize on d\theta, but are we supposed to?

Representation

Model Evaluation

Approach 1

Evaluate the model at the mean of each pixel.

coord

Approach 2

Integrate the model over the limits of each pixel.

int_eq

Negative Indices

The (dx, dy) domain contains negative coordinates. How do we use/transform these coordinates in the image space if we're representing it using a matrix?

Image Space Coordinate Transform

Images generally use a left-handed coordinate system (negative cross product), but the robot uses a right-handed coordinate system. We need to transform coordinates between the two spaces.