在Matlab中用canny算子获取图像边缘的程序怎么编写
1个回答
展开全部
clear all; close all;
I=imread('rice.png');
I=im2double(I);
J=imnoise(I, 'gaussian', 0, 0.01);
[K, thresh]=edge(J, 'canny');
figure;
subplot(121); imshow(J);
subplot(122); imshow(K);
I=imread('rice.png');
I=im2double(I);
J=imnoise(I, 'gaussian', 0, 0.01);
[K, thresh]=edge(J, 'canny');
figure;
subplot(121); imshow(J);
subplot(122); imshow(K);
追问
Error using edgeExpected input number 1, I, to be two-dimensional.Error in edge>parse_inputs (line 547)validateattributes(I,{'numeric','logical'},{'nonsparse','
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询