필터 지우기
필터 지우기

edge detection in image processing

조회 수: 4 (최근 30일)
K G V Kalyan Sreenivas Kumar
K G V Kalyan Sreenivas Kumar 2019년 11월 7일
ask.JPG
  댓글 수: 1
darova
darova 2019년 11월 7일
Try to binarize image
I1 = im2bw(I);
I2 = edge(I1);
imshow(I2)

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

채택된 답변

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH 2019년 11월 7일
solution :
I=rgb2gray(imread('coins1.jpg'));
imshow(I)
bw1=edge(I,'sobel');
figure
imshow(bw1)

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by