Timestamp of frame processing using peopleDetect
2 ビュー (過去 30 日間)
古いコメントを表示
I am using peopleDetect function to detect human object from video. I got the score from the peopleDetect method but now i need the time at which each frame was processed by peopleDetect function because i need to plot time vs score for some purpose. following code return score for each frame:
frameLeft = readerLeft.step();
% Detect people.
[bboxes,scores] = step(peopleDetector, frameLeft);
if ~isempty(bboxes)
% Find the centroids of detected people.
centroids = [round(bboxes(:, 1) + bboxes(:, 3) / 2), ...
round(bboxes(:, 2) + bboxes(:, 4) / 2)];
dispFrame = insertObjectAnnotation(frameLeft, 'rectangle' ,bboxes,scores);
else
dispFrame = frameLeft;
end
% Display the frame.
step(player, dispFrame);
how can i edit it to get time at each step as well?
0 件のコメント
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Tracking and Motion Estimation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!