How can I export ground truth object correctly from Image Labeler to .m script for objectDetectorTrainingData method?
15 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I' am trying to train my own object detector. For this I have done:
1. Labeled my Images with Image Labeler

2. Exported to workspace

3. Used gTruth object in .m file
trainingData = objectDetectorTrainingData(gTruth,'SamplingFactor',2);
4. and then I get the following error:
Error using objectDetectorTrainingData (line 156)
The input groundTruth object/s do not contain any valid object detector training data.
Does anyone have a clue what I have done wrong?
0 Commenti
Risposte (1)
Raunak Gupta
il 5 Dic 2019
Hi,
From the error message I can understand that the gTruth file that has been generated or variable that is saved to the workspace doesn’t contain any data that is of the class ‘Rectangle’. Since object detection problem requires data with bounding boxes, the function objectDetectorTrainingData is showing the error because the gTruth variable doesn’t contain even 1 frame which has ‘Rectangle’ type data. Otherwise objectDetectorTrainingData will read only those images which contains bounding box data.
I suggest you may check the ‘Type’ with the following command to be sure that gTruth contains ‘Rectangle’ type data.
gTruth.LabelDefinitions.Type
If Rectangle is present in the answer of the above command, then objectDetectorTrainingData will work.
2 Commenti
yikes_pd
il 3 Set 2021
Hi, i'm having the same problem. anyone have already solved the polygon labeling type data for detection?
Vedere anche
Categorie
Scopri di più su Image and Video Ground Truth Labeling in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!