Measuring the Frame rate for object detection using webcam Raspburry

조회 수: 3 (최근 30일)
Abdussalam Elhanashi
Abdussalam Elhanashi 2019년 11월 6일
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개)

카테고리

Help CenterFile Exchange에서 Tracking and Motion Estimation에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by