All Projects β†’ andrewssobral β†’ Vehicle_detection_haarcascades

andrewssobral / Vehicle_detection_haarcascades

Vehicle Detection by Haar Cascades with OpenCV

Projects that are alternatives of or similar to Vehicle detection haarcascades

Opencv Lane Vehicle Track
OpenCV implementation of lane and vehicle tracking
Stars: ✭ 162 (-63.6%)
Mutual labels:  opencv, vehicle-detection
Vehicle counting tensorflow
🚘 "MORE THAN VEHICLE COUNTING!" This project provides prediction for speed, color and size of the vehicles with TensorFlow Object Counting API.
Stars: ✭ 582 (+30.79%)
Mutual labels:  opencv, vehicle-detection
Carrecognition
This is one of the best vehicle recognition applications. It can determine the car's license plate number, color, model, brand and year.
Stars: ✭ 34 (-92.36%)
Mutual labels:  car, vehicle-detection
Vehicle counting hog svm
Vehicle detection, tracking and counting by SVM is trained with HOG features using OpenCV on c++.
Stars: ✭ 82 (-81.57%)
Mutual labels:  opencv, vehicle-detection
Simple vehicle counting
Vehicle Detection, Tracking and Counting
Stars: ✭ 439 (-1.35%)
Mutual labels:  opencv, vehicle-detection
Python video stab
A Python package to stabilize videos using OpenCV
Stars: ✭ 377 (-15.28%)
Mutual labels:  opencv
React Native Openalpr
An open-source React Native automatic license plate recognition package for OpenALPR
Stars: ✭ 415 (-6.74%)
Mutual labels:  opencv
Stereo Calibration
πŸ“· πŸ“· Stereo camera calibration using OpenCV and C++
Stars: ✭ 376 (-15.51%)
Mutual labels:  opencv
Pythonsift
A clean and concise Python implementation of SIFT (Scale-Invariant Feature Transform)
Stars: ✭ 374 (-15.96%)
Mutual labels:  opencv
Emotion Detection
Real-time Facial Emotion Detection using deep learning
Stars: ✭ 438 (-1.57%)
Mutual labels:  opencv
Deepbacksub
Virtual Video Device for Background Replacement with Deep Semantic Segmentation
Stars: ✭ 426 (-4.27%)
Mutual labels:  opencv
Handwriting Ocr
OCR software for recognition of handwritten text
Stars: ✭ 411 (-7.64%)
Mutual labels:  opencv
Movement Tracking
UP - DOWN - LEFT - RIGHT movement tracking.
Stars: ✭ 379 (-14.83%)
Mutual labels:  opencv
Image Processing Algorithm
paper implement
Stars: ✭ 415 (-6.74%)
Mutual labels:  opencv
Multi Camera Live Object Tracking
Multi-camera live traffic and object counting with YOLO v4, Deep SORT, and Flask.
Stars: ✭ 375 (-15.73%)
Mutual labels:  opencv
Csi Camera
Simple example of using a CSI-Camera (like the Raspberry Pi Version 2 camera) with the NVIDIA Jetson Nano Developer Kit
Stars: ✭ 433 (-2.7%)
Mutual labels:  opencv
Nowatermark
remove watermark. εŽ»ι™€ε›Ύη‰‡δΈ­ηš„ζ°΄ε°
Stars: ✭ 373 (-16.18%)
Mutual labels:  opencv
Tagui
Free RPA tool by AI Singapore
Stars: ✭ 4,257 (+856.63%)
Mutual labels:  opencv
Pycair
Content aware image resizing
Stars: ✭ 425 (-4.49%)
Mutual labels:  opencv
Gocv
Go package for computer vision using OpenCV 4 and beyond.
Stars: ✭ 4,511 (+913.71%)
Mutual labels:  opencv

Vehicle Detection with Haar Cascades

Last page update: 19/10/2016

Last version: 1.0.0 (see Release Notes for more info)

Hello everyone, An easy way to perform vehicle detection is by using Haar Cascades. Currently, I don't have a detailed tutorial about it, but you can get some extra information in the OpenCV homepage, see Cascade Classifier page. See also Cascade Classifier Training for training your own cascade classifier.

The haar-cascade cars.xml was trained using 526 images of cars from the rear (360 x 240 pixels, no scale). The images were extracted from the Car dataset proposed by Brad Philip and Paul Updike taken of the freeways of southern California.

For more information, please see:

For Windows users

  • Check if your OpenCV is installed at: C:\OpenCV2.4.10
  • There is a Visual Studio 2013 template project in the vs2013/ folder. Open it in the Visual Studio IDE and select [Release]-[Win32] or [Release]-[x64] mode. Next, click on run_vehicle_detection.bat and enjoy!

For Linux users

  • For Linux and Mac users, a Makefile is provided to compile the source code.
    • Requirements: OpenCV 2.4.x (it only works with this version).
    • Check out the latest project source code and compile it:
~/git clone https://github.com/andrewssobral/vehicle_detection_haarcascades.git
~/cd vehicle_detection_haarcascades
~/vehicle_detection_haarcascades/ chmod +x run_vehicle_detection_video1.sh
~/vehicle_detection_haarcascades/ chmod +x run_vehicle_detection_video2.sh
~/vehicle_detection_haarcascades/cd build
~/vehicle_detection_haarcascades/build/ cmake ..
~/vehicle_detection_haarcascades/build/ make
    • Run demos:
~/vehicle_detection_haarcascades/run_vehicle_detection_video1.sh
~/vehicle_detection_haarcascades/run_vehicle_detection_video2.sh

Docker image

Release Notes:

  • Version 1.0.0: First version.
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].