Is there any way in matlab to increase the size of bounding box as object grows in the live video
조회 수: 2 (최근 30일)
이전 댓글 표시
I am using bounding box for color detection in live video.i want to increase the size of bounding box as the red color object increases in size is there any such method??
댓글 수: 1
Image Analyst
2015년 5월 30일
What is your bounding box? Is that an ROI that you examine before you've found your color region? Or is that the bounding box of the color region after you've found it?
채택된 답변
Walter Roberson
2015년 5월 30일
See http://www.mathworks.com/help/vision/examples/motion-based-multiple-object-tracking.html if you are using the Vision toolbox.
댓글 수: 2
Image Analyst
2015년 5월 31일
Check the width and height of the current bounding box against the size of the old bounding box:
if bbCurrent(3) > bbPrior(3) || bbCurrent(4) > bbPrior(4)
% Box got bigger....
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Computer Vision with Simulink에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!