Measuring the Frame rate for object detection using webcam Raspburry

2 visualizaciones (últimos 30 días)
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

Respuestas (0)

Categorías

Más información sobre Tracking and Motion Estimation en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by