Skip to content

Instantly share code, notes, and snippets.

View kvas7andy's full-sized avatar
🎯
Focusing

Andrei Kvasov kvas7andy

🎯
Focusing
View GitHub Profile

Car Simulator in 3D outdoor towns. Main docs Well documented package.

Installation

  • Download latest release on documentation site
  • Build from source (less convenient)
  • Plus: build from source ImageConverter for depth/segmentation image convertor
  • Necessary libs for build:
sudo apt-get install libboost-all-dev
@kvas7andy
kvas7andy / 1_MINOS_tutorial.md
Last active August 15, 2022 09:00
Brief explanation of MUNOS simulator usage
@kvas7andy
kvas7andy / Scan matching - numpy version
Created March 6, 2017 21:51
Only numpy version of scan matching, no cycles. Function syntax differs
import numpy as np
import scipy
import matplotlib as mpl
import matplotlib.pyplot as plt
mpl.rcParams['figure.figsize'] = (10, 10)
def convert2xy(scans):
angles_loc = np.deg2rad(np.linspace(-120, 120, 682))
valid_obj = scans > 0.02
{
"cells": [
{
"cell_type": "code",
"execution_count": 126,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true
},