Test Object Detection Using YOLO v2 Deep Learning without labels.
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Rus Gabriela
am 20 Dez. 2021
Kommentiert: Rus Gabriela
am 4 Jan. 2022
Hello! I am really new to Matlab and AI and I want to learn a little bit about object detection. I made Object Detection Using YOLO v2 Deep Learning from examples and works fine, but I want to test this detector on a new image (not from TestData). My question is: Can I use this Detector for unlabeled pictures (not from training data or TestData) from my PC?
0 Kommentare
Akzeptierte Antwort
Sahil Jain
am 23 Dez. 2021
Hi Rus. You can use the "detect" function to test your network on images not in the training or testing data as mentioned in the Object Detection Using YOLO v2 example.
I = imread('highway.png');
I = imresize(I,inputSize(1:2));
[bboxes,scores] = detect(detector,I);
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!