https://github.com/JunshengFu/vehicle-detection
Created vehicle detection pipeline with two approaches: (1) deep neural networks (YOLO framework) and (2) support vector machines ( OpenCV + HOG).
https://github.com/JunshengFu/vehicle-detection
svm vehicle-detection yolov1
Last synced: 25 days ago
JSON representation
Created vehicle detection pipeline with two approaches: (1) deep neural networks (YOLO framework) and (2) support vector machines ( OpenCV + HOG).
- Host: GitHub
- URL: https://github.com/JunshengFu/vehicle-detection
- Owner: JunshengFu
- License: gpl-3.0
- Created: 2017-03-21T03:18:13.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-04-18T05:40:51.000Z (12 months ago)
- Last Synced: 2024-08-01T03:37:22.829Z (9 months ago)
- Topics: svm, vehicle-detection, yolov1
- Language: Python
- Homepage:
- Size: 59.4 MB
- Stars: 639
- Watchers: 27
- Forks: 244
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- License: License.txt
Awesome Lists containing this project
- awesome-yolo-object-detection - JunshengFu/vehicle-detection - detection?style=social"/> : Created vehicle detection pipeline with two approaches: (1) deep neural networks (YOLO framework) and (2) support vector machines ( OpenCV + HOG). (Object Detection Applications)
- awesome-yolo-object-detection - JunshengFu/vehicle-detection - detection?style=social"/> : Created vehicle detection pipeline with two approaches: (1) deep neural networks (YOLO framework) and (2) support vector machines ( OpenCV + HOG). (Applications)
README
# **Vehicle Detection for Autonomous Driving**
## Objective
#### A demo of Vehicle Detection System: a monocular camera is used for detecting vehicles.
#### [**(1) Highway Drive (with Lane Departure Warning)**](https://youtu.be/Brh9-uab7Qs) (Click to see the full video)
[![gif_demo1][demo1_gif]](https://youtu.be/Brh9-uab7Qs)
#### [**(2) City Drive (Vehicle Detection only)**](https://youtu.be/2wOxK86LcaM) (Click to see the full video)
[![gif_demo2][demo2_gif]](https://youtu.be/2wOxK86LcaM)---
### Code & Files
#### 1. My project includes the following files
* [main.py](main.py) is the main code for demos
* [svm_pipeline.py](svm_pipeline.py) is the car detection pipeline with SVM
* [yolo_pipeline.py](yolo_pipeline.py) is the car detection pipeline with a deep net [YOLO (You Only Look Once)](https://arxiv.org/pdf/1506.02640.pdf)
* [visualization.py](visualizations.py) is the function for adding visalization---
Others are the same as in the repository of [Lane Departure Warning System](https://github.com/JunshengFu/autonomous-driving-lane-departure-warning):
* [calibration.py](calibration.py) contains the script to calibrate camera and save the calibration results
* [lane.py](model.h5) contains the lane class
* [examples](examples) folder contains the sample images and videos#### 2. Dependencies & my environment
Anaconda is used for managing my [**dependencies**](https://github.com/udacity/CarND-Term1-Starter-Kit).
* You can use provided [environment-gpu.yml](environment-gpu.yml) to install the dependencies.
* OpenCV3, Python3.5, tensorflow, CUDA8
* OS: Ubuntu 16.04#### 3. How to run the code
(1) Download weights for YOLO
You can download the weight from [here](https://drive.google.com/file/d/0B5WIzrIVeL0WS3N2VklTVmstelE/view?usp=sharing&resourcekey=0-QkNPlJWkA9QsD6dHAmHXRw) and save it to
the [weights](weights) folder.(2) If you want to run the demo, you can simply run:
```sh
python main.py
```#### 4. Release History
* 0.1.1
* Fix two minor bugs and update the documents
* Date 18 April 2017* 0.1.0
* The first proper release
* Date 31 March 2017---
### **Two approaches: Linear SVM vs Neural Network**
### 1. Linear SVM Approach
`svm_pipeline.py` contains the code for the svm pipeline.**Steps:**
* Perform a Histogram of Oriented Gradients (HOG) feature extraction on a labeled training set of images and train a classifier Linear SVM classifier
* A color transform is applied to the image and append binned color features, as well as histograms of color, to HOG feature vector.
* Normalize your features and randomize a selection for training and testing.
* Implement a sliding-window technique and use SVM classifier to search for vehicles in images.
* Run pipeline on a video stream and create a heat map of recurring detections frame by frame to reject outliers and follow detected vehicles.
* Estimate a bounding box for detected vehicles.[//]: # (Image References)
[image1]: ./examples/car_not_car.png
[image2]: ./examples/hog_1.png
[image2-1]: ./examples/hog_2.png
[image3]: ./examples/search_windows.png
[image4]: ./examples/heat_map1.png
[image5]: ./examples/heat_map2.png
[image6]: ./examples/labels_map.png
[image7]: ./examples/svn_1.png
[image8]: ./examples/yolo_1.png
[image_yolo1]: ./examples/yolo1.png
[image_yolo2]: ./examples/yolo2.png
[video1]: ./project_video.mp4
[demo1_gif]: ./examples/demo1.gif
[demo2_gif]: ./examples/demo2.gif#### 1.1 Extract Histogram of Oriented Gradients (HOG) from training images
The code for this step is contained in the function named `extract_features` and codes from line 464 to 552 in `svm_pipeline.py`.
If the SVM classifier exist, load it directly.
Otherwise, I started by reading in all the `vehicle` and `non-vehicle` images, around 8000 images in each category. These datasets are comprised of
images taken from the [GTI vehicle image database](http://www.gti.ssr.upm.es/data/Vehicle_database.html) and
[KITTI vision benchmark suite](http://www.cvlibs.net/datasets/kitti/).
Here is an example of one of each of the `vehicle` and `non-vehicle` classes:![alt text][image1]
I then explored different color spaces and different `skimage.hog()` parameters (`orientations`, `pixels_per_cell`, and `cells_per_block`). I grabbed random images from each of the two classes and displayed them to get a feel for what the `skimage.hog()` output looks like.
Here is an example using the `RGB` color space and HOG parameters of `orientations=9`, `pixels_per_cell=(8, 8)` and `cells_per_block=(2, 2)`:
![alt text][image2]
![alt text][image2-1]
To optimize the HoG extraction, I **extract the HoG feature for the entire image only once**. Then the entire HoG image
is saved for further processing. (see line 319 to 321 in `svm_pipeline.py`)#### 1.2 Final choices of HOG parameters, Spatial Features and Histogram of Color.
I tried various combinations of parameters and choose the final combination as follows
(see line 16-27 in `svm_pipeline.py`):
* `YCrCb` color space
* orient = 9 # HOG orientations
* pix_per_cell = 8 # HOG pixels per cell
* cell_per_block = 2 # HOG cells per block, which can handel e.g. shadows
* hog_channel = "ALL" # Can be 0, 1, 2, or "ALL"
* spatial_size = (32, 32) # Spatial binning dimensions
* hist_bins = 32 # Number of histogram bins
* spatial_feat = True # Spatial features on or off
* hist_feat = True # Histogram features on or off
* hog_feat = True # HOG features on or offAll the features are **normalized** by line 511 to 513 in `svm_pipeline.py`, which is a critical step. Otherwise, classifier
may have some bias toward to the features with higher weights.
#### 1.3. How to train a classifier
I randomly select 20% of images for testing and others for training, and a linear SVM is used as classifier (see line
520 to 531 in `svm_pipeline.py`)#### 1.4 Sliding Window Search
For this SVM-based approach, I use two scales of the search window (64x64 and 128x128, see line 41) and search only between
[400, 656] in y axis (see line 32 in `svm_pipeline.py`). I choose 75% overlap for the search windows in each scale (see
line 314 in `svm_pipeline.py`).For every window, the SVM classifier is used to predict whether it contains a car nor not. If yes, save this window (see
line 361 to 366 in `svm_pipeline.py`). In the end, a list of windows contains detected cars are obtianed.![alt text][image3]
#### 1.5 Create a heat map of detected vehicles
After obtained a list of windows which may contain cars, a function named `generate_heatmap` (in line 565 in
`svm_pipeline.py`) is used to generate a heatmap. Then a threshold is used to filter out the false positives.![heatmap][image4]
![heatmap][image5]#### 1.6 Image vs Video implementation
**For image**, we could directly use the result from the filtered heatmap to create a bounding box of the detected
vehicle.**For video**, we could further utilize neighbouring frames to filter out the false positives, as well as to smooth
the position of bounding box.
* Accumulate the heatmap for N previous frame.
* Apply weights to N previous frames: smaller weights for older frames (line 398 to 399 in `svm_pipeline.py`).
* I then apply threshold and use `scipy.ndimage.measurements.label()` to identify individual blobs in the heatmap.
* I then assume each blob corresponded to a vehicle and constructe bounding boxes to cover the area of each blob detected.#### Example of test image
![alt text][image7]
---
### 2. Neural Network Approach (YOLO)
`yolo_pipeline.py` contains the code for the yolo pipeline.[YOLO](https://arxiv.org/pdf/1506.02640.pdf) is an object detection pipeline baesd on Neural Network. Contrast to prior work on object detection with classifiers
to perform detection, YOLO frame object detection as a regression problem to spatially separated bounding boxes and
associated class probabilities. A single neural network predicts bounding boxes and class probabilities directly from
full images in one evaluation. Since the whole detection pipeline is a single network, it can be optimized end-to-end
directly on detection performance.![alt text][image_yolo2]
Steps to use the YOLO for detection:
* resize input image to 448x448
* run a single convolutional network on the image
* threshold the resulting detections by the model’s confidence![alt text][image_yolo1]
`yolo_pipeline.py` is modified and integrated based on this [tensorflow implementation of YOLO](https://github.com/gliese581gg/YOLO_tensorflow).
Since the "car" is known to YOLO, I use the precomputed weights directly and apply to the entire input frame.#### Example of test image
![alt text][image8]---
### Discussion
For the SVM based approach, the accuray is good, but the speed (2 fps) is an problem due to the fact of sliding window approach
is time consuming! We could use image downsampling, multi-threads, or GPU processing to improve the speed. But, there are probably
a lot engineering work need to be done to make it running real-time. Also, in this application, I limit the vertical searching
range to control the number of searching windows, as well as avoid some false positives (e.g. cars on the tree).For YOLO based approach, it achieves real-time and the accuracy are quite satisfactory. Only in some cases, it may failure to
detect the small car thumbnail in distance. My intuition is that the original input image is in resolution of 1280x720, and it needs to be downscaled
to 448x448, so the car in distance will be tiny and probably quite distorted in the downscaled image (448x448). In order to
correctly identify the car in distance, we might need to either crop the image instead of directly downscaling it, or retrain
the network.