利用matlab自带函数快速提取二值图像的图像边缘 bwperim函数
摘要:
clear all;close all;clc; I = imread('rice.png'); I = im2bw(I); J = bwperim(I); % 提取二值图像图像边缘 figure; subplot(121);imshow(I);title('原二值图像'); subplot(122 阅读全文
posted @ 2019-09-05 11:56 我坚信阳光灿烂 阅读(2399) 评论(0) 推荐(0) 编辑