Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Androbd | 1,024 | 2 hours ago | 66 | gpl-3.0 | Java | |||||
Android OBD diagnostics with any ELM327 adapter | ||||||||||
Vehicle Detection And Tracking | 296 | 4 years ago | 11 | Python | ||||||
Computer vision based vehicle detection and tracking using Tensorflow Object Detection API and Kalman-filtering | ||||||||||
Datmo | 199 | a month ago | 2 | bsd-2-clause | C++ | |||||
Detection and Tracking of Moving Objects (DATMO) using sensor_msgs/Lidar. | ||||||||||
Vehicle Dsm | 52 | a month ago | 3 | mit | C++ | |||||
Vehicle detection and speed measurement system | ||||||||||
Hb100 Doppler Vehicle Speed Measurement | 18 | 4 years ago | lgpl-2.1 | C++ | ||||||
Determine viability of the HB100 for and test vehicle detection and speed measurement algorithms on Arduino UNO. | ||||||||||
Udacity Self Driving Car | 11 | 5 years ago | Jupyter Notebook | |||||||
Self-Driving Engineer Car Nanodegree | ||||||||||
Kidnapped Vehicle | 9 | 4 years ago | mit | C++ | ||||||
Particle Filter algorithm to localize a vehicle within a few centimeters, given a map, LiDAR measurements, vehicle controls and GPS. | ||||||||||
Vehicle Speed Measurement | 6 | 2 years ago | gpl-3.0 | C# | ||||||
An automatic vehicle speed measurement and speeding violation detection approach | ||||||||||
Nonstandard Android Measurements | 6 | 9 years ago | bsd-3-clause | Java | ||||||
Non-standard OpenXC Measurement and Unit types for Android | ||||||||||
Openxc Dash | 4 | 10 years ago | ||||||||
Bridge between Dash and OpenXC |
This software is provided as it is in addition to the paper
A Video-Based System for Vehicle Speed Measurement in Urban Roadways .
vehicledsm is a GStreamer plugin written in C/C++. For compiling the project, the following tools are required:
Part 1 (subset 1,2a): Google Drive
Part 2 (subset 2b): Google Drive
Part 3 (subset 3,4,5): Google Drive
Once all dependencies are correctly installed, configure the package and build it with:
cd gst-plugin
./autogen.sh
make
If everything goes fine, the binary file libgstplugin.so
must appear in
gst-plugin/gstreamer/.libs
.
To inspect that file (check if it is working properly), do:
cd gst-plugin/tools/
./inspect.sh
It should list the properties of the vehicledsm
plugin.
To run the software with the provided videos (please download the dataset first if not already done), do:
cd gst-plugin/tools
./run-dsm.sh ../../dataset/set1/
Please cite out paper if this software or any part of it is useful for you:
@ARTICLE{Luvizon_ITS_2016,
author={D. C. Luvizon and B. T. Nassu and R. Minetto},
journal={IEEE Transactions on Intelligent Transportation Systems},
title={A Video-Based System for Vehicle Speed Measurement in Urban Roadways},
year={2017},
volume={18},
number={6},
pages={1393-1404},
doi={10.1109/TITS.2016.2606369},
ISSN={1524-9050},
month={June},
}
Modify gst-plugin/src/Makefile.am to add or remove source files to build or add additional dependencies or compiler flags or change the name of the plugin file to be installed. Run ./autoregen.sh if changes don't take effect automatically on 'make'.
Modify gst-plugin/configure.ac to check for additional library dependencies or other features needed by your plugin. Run ./autoregen.sh if changes don't take effect automatically on 'make'.
Once the plugin is built you can either install it with 'sudo make install' (however, this will by default go into the /usr/local prefix where it won't be picked up by a GStreamer installed from packages, so you would need to set the GST_PLUGIN_PATH environment variable to include or point to /usr/local/lib/gstreamer-1.0/ for your plugin to be found by a from-package GStreamer). Alternatively, you will find your plugin binary in gst-plugins/src/.libs/ as libgstplugin.so or similar (the extension may vary), so you can also set the GST_PLUGIN_PATH environmen variable to the gst-plugins/src/.libs/ directory (best to specify an absolute path though).
SIGSEGV
just after launched.This code is provided under a MIT license, which basically means "do with it as you wish, but don't blame us if it doesn't work". You can use this code for any project as you wish, under any license as you wish. We recommend the use of the LGPL license for applications and plugins, given the minefield of patents the multimedia is nowadays. See the Gstreamer website for details.