Sobel Operator no threshold

I'm using the "edge(img,'sobel')" function but it returns a matrix that is logical. Is there a way to make it a uint8? I want to see it just the filtering.

 Accepted Answer

Image Analyst
Image Analyst on 3 Mar 2014
Don't use edge(). Use imgradient() instead. You will get the actual Sobel filtered image.

2 Comments

Thanks that worked, how would I show the histogram for it?
I was able to see it by [Gmag, Gdir] = imgradient(img,'sobel'); imshow(Gxy,[]);
For 256 bins, you could use
h = hist(Gmag(:),256);

Sign in to comment.

More Answers (1)

[Gx,Gy] = imgradientxy(im,'sobel');

Asked:

on 3 Mar 2014

Commented:

on 4 Mar 2014

Community Treasure Hunt

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

Start Hunting!