Skip to content

Instantly share code, notes, and snippets.

View zarifaziz's full-sized avatar
💤

Zarif Aziz zarifaziz

💤
View GitHub Profile
@br3ndonland
br3ndonland / github-actions-notes.md
Last active May 5, 2024 07:39
Getting the Gist of GitHub Actions
@superjax
superjax / occupancy_grid_mapping_example.py
Last active April 27, 2024 13:18
An occupancy grid mapping example
# This is an implementation of Occupancy Grid Mapping as Presented
# in Chapter 9 of "Probabilistic Robotics" By Sebastian Thrun et al.
# In particular, this is an implementation of Table 9.1 and 9.2
import scipy.io
import scipy.stats
import numpy as np
import matplotlib.pyplot as plt
from tqdm import tqdm