MaksimEkin / pyCarDisplay

pyCarDisplay is a Python library for simulating autonomous vehicle. It is developed to read the Kitti dataset and simulate an automated car. It can perform object detection, depth detection, IMU sensor simulation, Kalman Filtering, and display the results on a GUI.

Home Page:https://maksimekin.github.io/pyCarDisplay/html/index.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pyCarDisplay



Python Library for Simulating Autonomous Vehicle: pyCarDisplay. pyCarDisplay is developed to read the Kitti dataset, and simulate an automated car. It can perform object detection, depth detection, IMU sensor simulation, Kalman Filtering, and display the results on a GUI.

Installation

pip install pyCarDisplay # TODO: Upload to PyPi

or install from source

git clone https://github.com/MaksimEkin/pyCarDisplay
cd pyCarDisplay
python setup.py install

Prerequisites

Usage

from pyCarDisplay.pyCarDisplay import CarDisplay

display = CarDisplay(
    # Kitti dataset:
    # https://s3.eu-central-1.amazonaws.com/avg-kitti/raw_data/2011_09_26_drive_0005/2011_09_26_drive_0005_sync.zip
    car_images_path="2011_09_26/2011_09_26_drive_0005_sync/image_02/data/",
    imu_sensor_path="2011_09_26/2011_09_26_drive_0005_sync/oxts/data/",
    # Object detection model downloaded from:
    # https://drive.google.com/open?id=1bvJfF6r_zYl2xZEpYXxgb7jLQHFZ01Qe
    object_detection_model_path="checkpoint_ssd300.pth.tar",
    # Depth detection model downloaded from:
    # https://github.com/intel-isl/MiDaS/releases/download/v2_1/model-f6b98070.pt
    depth_detection_model_path="model-f6b98070.pt",
    verbose=True,
    device="cpu"
)

display.start()

Dependencies

numpy>=1.20.1
pandas>=1.2.3
Pillow>=8.1.2
PySimpleGUI>=4.37.0
torch>=1.8.0
torchaudio>=0.8.0
torchvision>=0.9.0
matplotlib>=3.4.1
opencv-python>=4.5.1
termcolor>=1.1.0

Documentation

The documentation of pyCarDisplay can be found here.

How to Cite pyCarDisplay?

@electronic{cmsc611_2021_umbc,
  author = {R. {Barron} and M. E. {Eren} and C. {Varga} and W. {Wang}},
  title = {pyCarDisplay},
  url = "https://github.com/MaksimEkin/pyCarDisplay"
}

References

About

pyCarDisplay is a Python library for simulating autonomous vehicle. It is developed to read the Kitti dataset and simulate an automated car. It can perform object detection, depth detection, IMU sensor simulation, Kalman Filtering, and display the results on a GUI.

https://maksimekin.github.io/pyCarDisplay/html/index.html

License:Apache License 2.0


Languages

Language:Python 100.0%