edge detection in image processing

1 view (last 30 days)
ask.JPG
  1 Comment
darova
darova on 7 Nov 2019
Try to binarize image
I1 = im2bw(I);
I2 = edge(I1);
imshow(I2)

Sign in to comment.

Accepted Answer

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

More Answers (0)

Community Treasure Hunt

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

Start Hunting!