All Projects → aljosaosep → sparse-scene-flow

aljosaosep / sparse-scene-flow

Licence: other
This repo contains C++ code for sparse scene flow method.

Programming Languages

C++
36643 projects - #6 most used programming language
c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to sparse-scene-flow

FusionAD
An open source autonomous driving stack by San Jose State University Autonomous Driving Team
Stars: ✭ 30 (+30.43%)
Mutual labels:  robotics, autonomous-car, autonomous-driving, autonomous-vehicles
Autonomousdrivingcookbook
Scenarios, tutorials and demos for Autonomous Driving
Stars: ✭ 1,939 (+8330.43%)
Mutual labels:  robotics, autonomous-driving, autonomous-vehicles
Matlabrobotics
MATLAB sample codes for mobile robot navigation
Stars: ✭ 332 (+1343.48%)
Mutual labels:  robotics, autonomous-driving, autonomous-vehicles
Autorally
Software for the AutoRally platform
Stars: ✭ 595 (+2486.96%)
Mutual labels:  robotics, autonomous-driving, autonomous-vehicles
Pythonrobotics
Python sample codes for robotics algorithms.
Stars: ✭ 13,934 (+60482.61%)
Mutual labels:  robotics, autonomous-driving, autonomous-vehicles
autonomous-delivery-robot
Repository for Autonomous Delivery Robot project of IvLabs, VNIT
Stars: ✭ 65 (+182.61%)
Mutual labels:  vision, autonomous-driving, autonomous-vehicles
Visualizing-lidar-data
Visualizing lidar data using Uber Autonomous Visualization System (AVS) and Jupyter Notebook Application
Stars: ✭ 75 (+226.09%)
Mutual labels:  autonomous-car, autonomous-driving, autonomous-vehicles
l2r
Open-source reinforcement learning environment for autonomous racing.
Stars: ✭ 38 (+65.22%)
Mutual labels:  robotics, autonomous-driving
Autonomous-RC-Car
Self-driving RC Car ROS Software
Stars: ✭ 17 (-26.09%)
Mutual labels:  autonomous-car, autonomous-driving
PyLidar3
PyLidar3 is python 3 package to get data from Lidar devices from various manufacturers.
Stars: ✭ 35 (+52.17%)
Mutual labels:  autonomous-driving, autonomous-vehicles
mick robot
基于激光传感器实现了简易的自主导航demo-开源自主导航小车项目(mick)
Stars: ✭ 56 (+143.48%)
Mutual labels:  autonomous-car, autonomous-vehicles
Tonic
An autonomous vehicle written in python
Stars: ✭ 85 (+269.57%)
Mutual labels:  autonomous-car, autonomous-vehicles
SelfDrivingRCCar
Autonomous RC Car using Neural Networks, Python and Open CV
Stars: ✭ 102 (+343.48%)
Mutual labels:  autonomous-driving, autonomous-vehicles
UAV-Stereo-Vision
A program for controlling a micro-UAV for obstacle detection and collision avoidance using disparity mapping
Stars: ✭ 30 (+30.43%)
Mutual labels:  vision, stereo-vision
highway-path-planning
My path-planning pipeline to navigate a car safely around a virtual highway with other traffic.
Stars: ✭ 39 (+69.57%)
Mutual labels:  autonomous-driving, autonomous-vehicles
OpenHDMap
An open HD map production process for autonomous car simulation
Stars: ✭ 152 (+560.87%)
Mutual labels:  autonomous-driving, autonomous-vehicles
pyMHT
Track oriented, multi target, multi hypothesis tracker
Stars: ✭ 66 (+186.96%)
Mutual labels:  autonomous-driving, autonomous-vehicles
copilot
Lane and obstacle detection for active assistance during driving. Uses windowed sweep for lane detection. Combination of object tracking and YOLO for obstacles. Determines lane change, relative velocity and time to collision
Stars: ✭ 95 (+313.04%)
Mutual labels:  autonomous-driving, autonomous-vehicles
2019-UGRP-DPoom
2019 DGIST DPoom project under UGRP : SBC and RGB-D camera based full autonomous driving system for mobile robot with indoor SLAM
Stars: ✭ 35 (+52.17%)
Mutual labels:  robotics, autonomous-driving
BtcDet
Behind the Curtain: Learning Occluded Shapes for 3D Object Detection
Stars: ✭ 104 (+352.17%)
Mutual labels:  autonomous-driving, autonomous-vehicles

Sparse Scene Flow

This repository contains code for sparse scene flow estimation using stereo cameras, proposed by P. Lenz etal.: Sparse Scene Flow Segmentation for Moving Object Detection in Urban Environments, Intelligent Vehicles Symposium (IV), 2011. This method can be used as a component in your visual object tracking / 3D reconstruction / SLAM applications as an alternative to dense (and typically expensive to compute) scene flow methods.

Note: The repository contains scene flow estimator only, there is no implementation for scene flow clustering or object tracking provided in this repository.

Alt text

If you want to know what is the difference between scene and optical flow, see this quora thread.

Demo Video

Click here to watch the video.

Prerequisite

In order to run the code, your setup has to meet the following minimum requirements (tested versions in parentheses. Other versions might work, too):

  • GCC 4.8.4
    • Eigen (3.x)
    • pybind11

Install

Compiling the code using CMake

  1. mkdir build
  2. cmake ..
  3. make all

Running the sparse flow app

  1. Download KITTI
  2. See python/python_example.py to see how to use visual odometry estimator

Remarks

  • External libraries

  • For optimal performance, run the sf-estimator in release mode.

UPDATE (Jan'20): I added bindings for python and removed most of the "old" exmaple code in order to shrink the dependencies to the minimum. See the python example.

If you have any issues or questions about the code, please contact me https://www.vision.rwth-aachen.de/person/13/

Citing

If you find this code useful in your research, you should cite:

@inproceedings{Lenz2011IV,
  author = {Philip Lenz and Julius Ziegler and Andreas Geiger and Martin Roser},
  title = {Sparse Scene Flow Segmentation for Moving Object Detection in Urban Environments},
  booktitle = {Intelligent Vehicles Symposium (IV)},
  year = {2011}
}

License

GNU General Public License (http://www.gnu.org/licenses/gpl.html)

Copyright (c) 2017 Aljosa Osep Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].