图像凸包的显示

最近在研究图像的显著性分析,看到有关利用图像特征点进行图像显著性分析的方法,为了方便显著图像的特征点,我们可以利用convexhull的方法得到关于图像特征点的一个凸包。比如:

rgb_im = imread('leaf.bmp');
figure,imshow(rgb_im);
corner_im2 = getsalientpoints(rgb_im);
corner_im = elimatepoint(corner_im2,thresh);
[row,col] = size(corner_im);
[y,x] = ind2sub([row,col],find(corner_im == 1));%find positiion of the corner points
dt = DelaunayTri(x,y);
if(~size(dt,1))
    return;
end
[k,av] = convexHull(dt);%find the points to plot the convex hull
 hold on;plot(x(k), y(k), 'r'); 
 hold off;图像凸包的显示_第1张图片

你可能感兴趣的:(计算机视觉)