Sobel filter with slider (GUI).
Show older comments
Hello, So, I am trying to use a slider to manipulate the sobel filter to modify an image. The problem is I have no clue how sobel works whatsoever. I am pretty much still new to matlab, but I would appreciate if someone can at least explain how sobel works. Thank you.
Answers (3)
Amith Kamath
on 19 Aug 2013
Edited: Amith Kamath
on 19 Aug 2013
0 votes
http://homepages.inf.ed.ac.uk/rbf/HIPR2/sobel.htm is a good introduction to the Sobel filter. It is essentially a Laplacian of Gaussian (LOG) filter which detects edges in your input image. http://www.mathworks.com/help/images/analyzing-images.html#f11-12512 may also help.
Image Analyst
on 19 Aug 2013
0 votes
The standard Sobel filter is done by the imgradient() function. That's a 3-by-3 filter. If you want to modify it, then you can choose a different size filter by using a LOG or DOG filter and conv2() or imfilter().
Jyoti Verma
on 14 Jan 2020
0 votes
Sobel Filter Edge Detection
Categories
Find more on Object Analysis in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!