我有一个包含两条轮廓线的图像。我想在这些轮廓线内填充不同的颜色。怎么实现呢?这是我绘制两条轮廓线的代码
function FillColorContour(Img,phi1,phi2,color1,color2)
imagesc(uint8(Img),[0 255]),colormap(gray),axis off;axis equal,title('FillColorContour')
hold on,[c,h1] = contour(phi1,[0 0],'r','linewidth',1); hold off
hold on,[c,h2] = contour(phi2,[0 0],'r','linewidth',1); hold off
end
使用它。我会用命令打电话:
Img=imread('peppers.png');
[Height Wide] = size(Img);
[xx yy] = meshgrid(1:Wide,1:Height);
phi1 = (sqrt(((xx - 60).^2 + (yy - 100).^2 )) - 15);
phi2 = (sqrt(((xx - 100).^2 + (yy - 150).^2 )) - 15);
FillColorContour(Img,phi1,phi2,'r','b') %Assume'r' is red, 'b' is blue
这是在https://www.dropbox.com/s/ll4npg3cmturt4c/contourex.PNG之前 这是在运行https://www.dropbox.com/s/pqi4rxluxfegxhn/contourexfill.png
之后答案 0 :(得分:2)
使用contourc
计算轮廓,使用patch
将其绘制为填充区域。
按照你的(美化;)代码
Img = imread('peppers.png');
[Height, Width] = size(Img);
[xx, yy] = meshgrid(1 : Width, 1 : Height);
imagesc(Img,[0 255])
axis off
title('FillColorContour')
phi1 = (sqrt(((xx - 60).^2 + (yy - 100).^2 )) - 15);
计算轮廓
cont = contourc(phi1, [0 0])';
cont = cont(2 : end, :); % first line contains contour level and number of points; skip
并将其绘制为“补丁”:
patch(cont(:, 1), cont(:, 2), 'r', 'EdgeColor', 'w')
您可以分别选择填充颜色和边缘颜色;我用的是红色和白色。
结果:
对于phi2
,您当然只需要类似的代码。