Bounding Box set by parameters

조회 수: 1 (최근 30일)
Gytis Raudonius
Gytis Raudonius 2016년 4월 5일
답변: Image Analyst 2016년 4월 5일
Hi, how i can set bounding box if i need that recantagle be then width are biger then height. Sorry for my english. Also add image too easy understand my question.

답변 (1개)

Image Analyst
Image Analyst 2016년 4월 5일
Call regionprops():
measurements = regionprops(logical(binaryImage), 'BoundingBox');
bBox = measurements.BoundingBox;
hold on;
rectangle('Position', bBox, 'EdgeColor', 'r');

카테고리

Help CenterFile Exchange에서 Image Segmentation and Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by