필터 지우기
필터 지우기

How can I track the upper corners of the bounding box.

조회 수: 2 (최근 30일)
Nafeesath Musfira
Nafeesath Musfira 2015년 3월 10일
댓글: Nafeesath Musfira 2015년 3월 11일
I'm trying to track the hand region. As it seems suitable for me I want to track the upper corners of the bounding box in each frames. I've found the corners and marked it with blue.
Now, I want to track these corner points in each frame.

답변 (1개)

Image Analyst
Image Analyst 2015년 3월 10일
regionprops() will give you the bounding box.
measurements = regionprops(labeledImage, 'BoundingBox');
BoundingBox is a member/field of the measurements structure. See my Image Segmentation Tutorial if you need a demo: http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862
  댓글 수: 3
Image Analyst
Image Analyst 2015년 3월 10일
Just log the (x,y) coordinates to an array or file each time you get a new set.
Nafeesath Musfira
Nafeesath Musfira 2015년 3월 11일
But do I need to use some specific tracking algorithm or can i just work with this coordinates for classification?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Feature Detection and Extraction에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by