答案 0 :(得分:1)
我会计算出具有相应角度的最小Feret直径(最短投影)和垂直投影。这通常对应于最小的边界框。
请参阅此处了解计算Feret直径的MATLAB代码:http://www.crisluengo.net/archives/408
答案 1 :(得分:0)
您可以尝试使用regionprops
,如下所示:
I = imread('tHZhy.png');
stats = regionprops(I, 'centroid', 'Orientation', 'MajorAxisLength','MinorAxisLength', 'BoundingBox');
figure
imshow(I)
hold on
for i=1:length(stats)
xc = stats(i).Centroid;
ma = stats(i).MajorAxisLength/2;
mi = stats(i).MinorAxisLength/2;
theta = -deg2rad(stats(i).Orientation);
dx = [-ma -mi; ma -mi; ma mi; -ma mi; -ma -mi];
R = [cos(theta) -sin(theta); sin(theta) cos(theta)]; % rotation matrix
x = xc + dx*R';
plot(xc(1), xc(2), 'g*');
plot(x(:, 1), x(:, 2), 'g');
end