IN matlab 2017b version i have a error in canny edge detection like this.

조회 수: 2 (최근 30일)
sasi g
sasi g 2022년 2월 2일
답변: Divyam 2024년 9월 17일
Segmentedimg = edge(Enhanceimg,'canny'); figure('Name','Segmented image','NumberTitle','off'); imshow(Segmentedimg);
title('Segmented Image','fontsize',10,'fontname','Times New Roman','color','Black');
  댓글 수: 1
Umeshraja
Umeshraja 2024년 9월 17일
Hi @sasi g, I am not getting any error. Can you mention more on what kind of error are you encountering? Also attach the file you are using for analysis.

댓글을 달려면 로그인하십시오.

답변 (1개)

Divyam
Divyam 2024년 9월 17일
Hi @sasi g,
In case you are using an RGB image, you can use the "rgb2gray" function to convert the RGB image to grayscale as the "edge" function takes a grayscale image as input. Apart from that, capitalize the option you are choosing for "edge" function as shown in the code below:
% Optional: converting RGB image to grayscale
Enhanceimg = rgb2gray(Enhanceimg);
% The method name should be "Canny" instead of "canny"
Segmentedimg = edge(Enhanceimg,'Canny');
figure('Name','Segmented image','NumberTitle','off');
imshow(Segmentedimg);
title('Segmented Image','fontsize',10,'fontname','Times New Roman','color','Black');

태그

제품


릴리스

R2017b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by