Measuring the Frame rate for object detection using webcam Raspburry
1 次查看(过去 30 天)
显示 更早的评论
Hi Guys
I am looking for measuring the frame rate per second for object detection using R-CNN using webcam Raspburry
code is
detector= load ('detector.mat');
r = raspi;
w = webcam(r);
for k = 1:100000000000000000
img = snapshot(w);
img=imresize(img,[640,480]);
[bbox,score] = detect(detector.detector,img,'MiniBatchSize', 128);
detectedImg = insertObjectAnnotation(img,'rectangle',bbox,score);
displayImage(r,detectedImg,'Title','detectedImg');
end
0 个评论
回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!