Drawing 4-sided polygons around objects
조회 수: 3 (최근 30일)
이전 댓글 표시
Hello
I wrote a code to approximate each brick in this image into rectangles. However, some bricks in other images can't be approximated into rectangles due to the irregular shape
So, I need to draw a 4-sided polygon around each brick. Can any one help me? 

Here is the rectangle's code:
clc; clear; close;
I = imread ('1.png');
figure, imshow(I);
IBW = imbinarize(rgb2gray(I));
[L, num ] = bwlabel(IBW);
bboxes = regionprops(L, 'BoundingBox');
figure, imshow(IBW);
hold on
for k=1 : length(bboxes)
curbb = bboxes(k). BoundingBox;
rectangle ('Position',[curbb(1),curbb(2),curbb(3),curbb(4)], 'EdgeColor','g', 'LineWidth', 1)
end
hold off
댓글 수: 0
답변 (1개)
Matt J
2020년 10월 28일
This will help to find the corners of the boxes.
Use the line() command instead of rectangle() to draw general quadrilaterals.
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!