Test Object Detection Using YOLO v2 Deep Learning without labels.

조회 수: 3 (최근 30일)
Rus Gabriela
Rus Gabriela 2021년 12월 20일
댓글: Rus Gabriela 2022년 1월 4일
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?

채택된 답변

Sahil Jain
Sahil Jain 2021년 12월 23일
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);

추가 답변 (0개)

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by