Main Content

Train a Deep Learning Vehicle Detector

This example shows how to train a vision-based vehicle detector using deep learning.

Overview

Vehicle detection using computer vision is an important component for tracking vehicles around the ego vehicle. The ability to detect and track vehicles is required for many autonomous driving applications, such as for forward collision warning, adaptive cruise control, and automated lane keeping. Automated Driving Toolbox™ provides pretrained vehicle detectors (vehicleDetectorFasterRCNNandvehicleDetectorACF) to enable quick prototyping. However, the pretrained models might not suit every application, requiring you to train from scratch. This example shows how to train a vehicle detector from scratch using deep learning.

Deep learning is a powerful machine learning technique that you can use to train robust object detectors. Several deep learning techniques for object detection exist, including Faster R-CNN and you only look once (YOLO) v2. This example trains a Faster R-CNN vehicle detector using thetrainFasterRCNNObjectDetectorfunction. For more information, see对象检测.

Download Pretrained Detector

Download a pretrained detector to avoid having to wait for training to complete. If you want to train the detector, set thedoTrainingAndEvalvariable to true.

doTrainingAndEval = false;if~doTrainingAndEval && ~exist('fasterRCNNResNet50EndToEndVehicleExample.mat','file') disp('Downloading pretrained detector (118 MB)...'); pretrainedURL ='//www.tianjin-qmedu.com/supportfiles/vision/data/fasterRCNNResNet50EndToEndVehicleExample.mat'; websave('fasterRCNNResNet50EndToEndVehicleExample.mat',pretrainedURL);end

Load Dataset

This example uses a small labeled dataset that contains 295 images. Many of these images come from the Caltech Cars 1999 and 2001 data sets, created by Pietro Perona and used with permission. Each image contains one or two labeled instances of a vehicle. A small dataset is useful for exploring the Faster R-CNN training procedure, but in practice, more labeled images are needed to train a robust detector. Unzip the vehicle images and load the vehicle ground truth data.

unzipvehicleDatasetImages.zipdata = load('vehicleDatasetGroundTruth.mat'); vehicleDataset = data.vehicleDataset;

The vehicle data is stored in a two-column table, where the first column contains the image file paths and the second column contains the vehicle bounding boxes.

Split the data set into a training set for training the detector and a test set for evaluating the detector. Select 60% of the data for training. Use the rest for evaluation.

rng(0) shuffledIdx = randperm(height(vehicleDataset)); idx = floor(0.6 * height(vehicleDataset)); trainingDataTbl = vehicleDataset(shuffledIdx(1:idx),:); testDataTbl = vehicleDataset(shuffledIdx(idx+1:end),:);

UseimageDatastoreandboxLabelDatastoreto create datastores for loading the image and label data during training and evaluation.

imdsTrain = imageDatastore(trainingDataTbl{:,'imageFilename'}); bldsTrain = boxLabelDatastore(trainingDataTbl(:,'vehicle')); imdsTest = imageDatastore(testDataTbl{:,'imageFilename'}); bldsTest = boxLabelDatastore(testDataTbl(:,'vehicle'));

Combine image and box label datastores.

trainingData = combine(imdsTrain,bldsTrain); testData = combine(imdsTest,bldsTest);

Display one of the training images and box labels.

data = read(trainingData); I = data{1}; bbox = data{2}; annotatedImage = insertShape(I,'Rectangle',bbox); annotatedImage = imresize(annotatedImage,2); figure imshow(annotatedImage)

Create Faster R-CNN Detection Network

A Faster R-CNN object detection network is composed of a feature extraction network followed by two subnetworks. The feature extraction network is typically a pretrained CNN, such as ResNet-50 or Inception v3. The first subnetwork following the feature extraction network is a region proposal network (RPN) trained to generate object proposals - areas in the image where objects are likely to exist. The second subnetwork is trained to predict the actual class of each object proposal.

The feature extraction network is typically a pretrained CNN (for details, seePretrained Deep Neural Networks(Deep Learning Toolbox)). This example uses ResNet-50 for feature extraction. You can also use other pretrained networks such as MobileNet v2 or ResNet-18, depending on your application requirements.

UsefasterRCNNLayersto create a Faster R-CNN network automatically given a pretrained feature extraction network.fasterRCNNLayersrequires you to specify several inputs that parameterize a Faster R-CNN network:

  • Network input size

  • Anchor boxes

  • Feature extraction network

First, specify the network input size. When choosing the network input size, consider the minimum size required to run the network itself, the size of the training images, and the computational cost incurred by processing data at the selected size. When feasible, choose a network input size that is close to the size of the training image and larger than the input size required for the network. To reduce the computational cost of running the example, specify a network input size of [224 224 3], which is the minimum size required to run the network.

inputSize = [224 224 3];

Note that the training images used in this example are bigger than 224-by-224 and vary in size, so you must resize the images in a preprocessing step prior to training.

Next, useestimateAnchorBoxesto estimate anchor boxes based on the size of objects in the training data. To account for the resizing of the images prior to training, resize the training data for estimating anchor boxes. Usetransformto preprocess the training data, then define the number of anchor boxes and estimate the anchor boxes.

preprocessedTrainingData = transform(trainingData, @(data)preprocessData(data,inputSize)); numAnchors = 4; anchorBoxes = estimateAnchorBoxes(preprocessedTrainingData,numAnchors)
anchorBoxes =4×296 91 68 65 150 125 38 29

For more information on choosing anchor boxes, seeEstimate Anchor Boxes From Training Data(Computer Vision Toolbox™) andAnchor Boxes for Object Detection.

Now, useresnet50to load a pretrained ResNet-50 model.

featureExtractionNetwork = resnet50;

Select'activation_40_relu'as the feature extraction layer. This feature extraction layer outputs feature maps that are downsampled by a factor of 16. This amount of downsampling is a good trade-off between spatial resolution and the strength of the extracted features, as features extracted further down the network encode stronger image features at the cost of spatial resolution. Choosing the optimal feature extraction layer requires empirical analysis. You can useanalyzeNetworkto find the names of other potential feature extraction layers within a network.

featureLayer ='activation_40_relu';

Define the number of classes to detect.

numClasses = width(vehicleDataset)-1;

Create the Faster R-CNN object detection network.

lgraph = fasterRCNNLayers(inputSize,numClasses,anchorBoxes,featureExtractionNetwork,featureLayer);

You can visualize the network usinganalyzeNetworkor Deep Network Designer from Deep Learning Toolbox™.

If more control is required over the Faster R-CNN network architecture, use Deep Network Designer to design the Faster R-CNN detection network manually. For more information, seeGetting Started with R-CNN, Fast R-CNN, and Faster R-CNN.

Data Augmentation

Data augmentation is used to improve network accuracy by randomly transforming the original data during training. By using data augmentation, you can add more variety to the training data without actually having to increase the number of labeled training samples.

Usetransformto augment the training data by randomly flipping the image and associated box labels horizontally. Note that data augmentation is not applied to test data. Ideally, test data is representative of the original data and is left unmodified for unbiased evaluation.

augmentedTrainingData = transform(trainingData,@augmentData);

Read the same image multiple times and display the augmented training data.

augmentedData = cell(4,1);fork = 1:4 data =阅读(augmentedTrainingData);augmentedData{k} = insertShape(data{1},'Rectangle',data{2}); reset(augmentedTrainingData);endfigure montage(augmentedData,'BorderSize',10)

Preprocess Training Data

Preprocess the augmented training data to prepare for training.

trainingData = transform(augmentedTrainingData,@(data)preprocessData(data,inputSize));

Read the preprocessed data.

data = read(trainingData);

显示image and box bounding boxes.

I = data{1}; bbox = data{2}; annotatedImage = insertShape(I,'Rectangle',bbox); annotatedImage = imresize(annotatedImage,2); figure imshow(annotatedImage)

Train Faster R-CNN

UsetrainingOptionsto specify network training options. Set'CheckpointPath'to a temporary location. This enables the saving of partially trained detectors during the training process. If training is interrupted, such as by a power outage or system failure, you can resume training from the saved checkpoint.

options = trainingOptions('sgdm',...“MaxEpochs”7...'MiniBatchSize',1,...'InitialLearnRate',1e-3,...'CheckpointPath',tempdir);

UsetrainFasterRCNNObjectDetectorto train Faster R-CNN object detector ifdoTrainingAndEvalis true. Otherwise, load the pretrained network.

ifdoTrainingAndEval%火车R-CNN探测器越快。% * Adjust NegativeOverlapRange and PositiveOverlapRange to ensure% that training samples tightly overlap with ground truth.[detector, info] = trainFasterRCNNObjectDetector(trainingData,lgraph,options,...'NegativeOverlapRange',[0 0.3],...'PositiveOverlapRange',[0.6 1]);else% Load pretrained detector for the example.pretrained = load('fasterRCNNResNet50EndToEndVehicleExample.mat'); detector = pretrained.detector;end

This example was verified on an Nvidia(TM) Titan X GPU with 12 GB of memory. Training the network took approximately 20 minutes. The training time varies depending on the hardware you use.

As a quick check, run the detector on one test image. Make sure you resize the image to the same size as the training images.

I = imread(testDataTbl.imageFilename{1}); I = imresize(I,inputSize(1:2)); [bboxes,scores] = detect(detector,I);

显示results.

I = insertObjectAnnotation(I,'rectangle',bboxes,scores); figure imshow(I)

Evaluate Detector Using Test Set

Evaluate the trained object detector on a large set of images to measure the performance. Computer Vision Toolbox™ provides object detector evaluation functions to measure common metrics such as average precision (evaluateDetectionPrecision) and log-average miss rates (evaluateDetectionMissRate). For this example, use the average precision metric to evaluate performance. The average precision provides a single number that incorporates the ability of the detector to make correct classifications (precision) and the ability of the detector to find all relevant objects (recall).

Apply the same preprocessing transform to the test data as for the training data.

testData = transform(testData,@(data)preprocessData(data,inputSize));

Run the detector on all the test images.

ifdoTrainingAndEval detectionResults = detect(detector,testData,'MinibatchSize',4);else% Load pretrained detector for the example.pretrained = load('fasterRCNNResNet50EndToEndVehicleExample.mat'); detectionResults = pretrained.detectionResults;end

Evaluate the object detector using the average precision metric.

[ap, recall, precision] = evaluateDetectionPrecision(detectionResults,testData);

The precision/recall (PR) curve highlights how precise a detector is at varying levels of recall. The ideal precision is 1 at all recall levels. The use of more data can help improve the average precision but might require more training time. Plot the PR curve.

figure plot(recall,precision) xlabel('Recall') ylabel('Precision') gridontitle(sprintf('Average Precision = %.2f', ap))

Supporting Functions

functiondata = augmentData(data)% Randomly flip images and bounding boxes horizontally.tform = randomAffine2d('XReflection',true); sz = size(data{1},[1 2]); rout = affineOutputView(sz, tform); data{1} = imwarp(data{1},tform,'OutputView',rout);% Sanitize box data, if needed.data{2} = helperSanitizeBoxes(data{2}, sz);% Warp boxes.data{2} = bboxwarp(data{2},tform,rout);endfunctiondata = preprocessData(数据、目标Size)% Resize image and bounding boxes to targetSize.sz = size(data{1},[1 2]); scale = targetSize(1:2)./sz; data{1} = imresize(data{1},targetSize(1:2));% Sanitize box data, if needed.data{2} = helperSanitizeBoxes(data{2}, sz);% Resize boxes.data{2} = bboxresize(data{2},scale);end

References

[1] Ren, S., K. He, R. Gershick, and J. Sun. "Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks."IEEE Transactions of Pattern Analysis and Machine Intelligence. Vol. 39, Issue 6, June 2017, pp. 1137-1149.

[2] Girshick, R., J. Donahue, T. Darrell, and J. Malik. "Rich Feature Hierarchies for Accurate Object Detection and Semantic Segmentation."Proceedings of the 2014 IEEE Conference on Computer Vision and Pattern Recognition. Columbus, OH, June 2014, pp. 580-587.

[3] Girshick, R. "Fast R-CNN."Proceedings of the 2015 IEEE International Conference on Computer Vision. Santiago, Chile, Dec. 2015, pp. 1440-1448.

[4] Zitnick, C. L., and P. Dollar. "Edge Boxes: Locating Object Proposals from Edges."European Conference on Computer Vision. Zurich, Switzerland, Sept. 2014, pp. 391-405.

[5] Uijlings, J. R. R., K. E. A. van de Sande, T. Gevers, and A. W. M. Smeulders. "Selective Search for Object Recognition."International Journal of Computer Vision. Vol. 104, Number 2, Sept. 2013, pp. 154-171.

See Also

Functions

Related Topics