how to create traning,testing table in yolov3 for multiple class?
7 views (last 30 days)
Show older comments
I have the following dataset downloaded from net has an extension of mat file,i am beginner in matalb i dont how to use this data set in yolo object detection?

0 Comments
Answers (1)
yanqi liu
on 17 Jan 2022
yes,sir,may be upload your mat file and images,or check the follow demo
clc; clear all; close all;
load yolov2ResNet50StopSign.mat
I = imread(fullfile(pwd, 'test_data', 'test2.jpg'));
if size(I, 1)/224 < 1
I = imresize(I, size(I, 1)/224+0.5, 'bilinear');
end
[bboxes,scores] = detect(detector,I,'Threshold',0.5);
I = insertObjectAnnotation(I,'rectangle',bboxes,scores,'LineWidth',7);
figure; imshow(I); title('demo');
2 Comments
yanqi liu
on 25 Jan 2022
yes,may be make self train data,so we should do some label task,use
to get imageLabeler and then process own data
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!