Object detection based on CNN in matlab
Show older comments
I want to build an object recognition system based on CNN. I've collected a database, and I want to apply the steps mentioned in the following example:
In this example, there is this code that aims to load the vehicle data :
data = load('fasterRCNNVehicleTrainingData.mat');
vehicleDataset = data.vehicleTrainingData;
I want to know how can I create this file for my dataset.
Thanks.
2 Comments
Walma gharbi
on 12 May 2018
Edited: Walma gharbi
on 12 May 2018
I want to apply this example (link below) on a different dataset more precisely satellites images. Would I have to change the size on the input layers or anything in the network or could I just train the same model using this different labeled data and obtain a valid detector.
Javier Pinzón
on 28 May 2018
Your can...
They idea of using a 32x32 image at the input it the final size of each detected object when entered to the network. If you want more detailed input images, you must change the input layer, and also check if you need to change anything else inside the network. First try and understand the operation and the adventure yourself to change network parameters.
Accepted Answer
More Answers (2)
Image Analyst
on 20 Jul 2017
0 votes
If you can't find the data file on your drive after doing a search, then call and ask the Mathworks for the .mat file. It's possible that the file only ships with a certain toolbox, which you may not have.
2 Comments
Sivaramakrishnan Rajaraman
on 18 Sep 2018
I'm applying RCNN for multi-class object detection; for classifying and regressing normal and abnormal regions in x-rays. The training data input for an RCNN based object detection algorithm follows this format: 1st column specifying the folder/imageFileName, and the second column specifying the bounding boxes for a single class. I have the data (normal and abnormal) in their respective folders along with the bounding box coordinates. Could you please let me know how to format the training input table for my multi-class RCNN object detection problem? Do we have an example discussing the training input data table in this format?
Batool Alhumaidi
on 3 Feb 2020
Hello,, did you find an answer for your question? becuase I'm facing the same problem
shanmukha rao budumuru
on 29 Mar 2019
Edited: shanmukha rao budumuru
on 29 Mar 2019
0 votes
i am having a data set which have been randomized inside a .mat file ( means it has not splitted into any labels) , please suggest me with a code that divide the data into training data and test data
1 Comment
Image Analyst
on 29 Mar 2019
randsample() or randperm().
Categories
Find more on Object Detection in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!