matlab平滑图像轮廓,Matlab 画平滑轮廓 print 高质量 figure

Matlab 画平滑轮廓 print 高质量 figure

在matlab中,想将分割的结果以轮廓的形式显示到灰度图上,要提取、绘制平滑轮廓。 自己提取轮廓、绘制,不方便,效果差。 matlab提供了函数接口,且绘制结果用print函数来保存成分辨率可控、无白边的的高质量图像。

代码如下:

close all; clear all;clc;

SaveSize = [768 576];

Res = 100;

ImgSave_Name = 'F:\1.png';

A = imread('12.bmp');

B = imread('Seg.png');

C = rgb2gray(A);

h = figure(1); imshow(C,'border','tight','initialmagnification','fit'), hold on

set(gcf,'PaperPositionMode', 'manual');

set(gcf,'PaperUnits','inches');

set(gcf,'PaperPosition', [0 0 SaveSize(1)/Res SaveSize(2)/Res]);

% Contour

B = B(:,:,1)==255;

contour(B, 1, 'linecolor','g');

print(gcf, ['-r',num2str(Res)], '-dpng',ImgSave_Name);

close(h);

0818b9ca8b590ca3270a3433284dd417.png

你可能感兴趣的:(matlab平滑图像轮廓)