MATLAB: Edge detection in image processing

edge detedtionimage processingmatlab function

ask.JPG

Best Answer

solution :
I=rgb2gray(imread('coins1.jpg'));
imshow(I)
bw1=edge(I,'sobel');
figure
imshow(bw1)
Related Question