to write matlab code for sharpening filter?
Ältere Kommentare anzeigen
pls write matlab code for sharpening filters using SOBEL OPERATERS.........
3 Kommentare
Walter Roberson
am 7 Jan. 2013
What have you done so far?
Jan
am 7 Jan. 2013
What is your question? When you want somebody to do your work, offering money is a standard method.
Image Analyst
am 7 Jan. 2013
Sobel filter does not do sharpening! You can tell that because the central element of the kernel is zero which means that nothing is added to the original image. It's purely an edge detector, not a high frequency boosting filter. You will not see your original image with enhanced/sharpened edges.
Antworten (1)
Image Analyst
am 7 Jan. 2013
Hint:
edgeImage = conv2(imageArray, sobelKernel, 'same');
You can find the Sobel kernels anywhere online.
Kategorien
Mehr zu Multirate Signal Processing finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!