フィルターのクリア

edge detection in image processing

1 回表示 (過去 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)
  1 件のコメント
K G V Kalyan Sreenivas Kumar
K G V Kalyan Sreenivas Kumar 2019 年 11 月 10 日
Thanks david

サインインしてコメントする。

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by