to write matlab code for sharpening filter?
Afficher commentaires plus anciens
pls write matlab code for sharpening filters using SOBEL OPERATERS.........
3 commentaires
Walter Roberson
le 7 Jan 2013
What have you done so far?
Jan
le 7 Jan 2013
What is your question? When you want somebody to do your work, offering money is a standard method.
Image Analyst
le 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.
Réponses (1)
Image Analyst
le 7 Jan 2013
Hint:
edgeImage = conv2(imageArray, sobelKernel, 'same');
You can find the Sobel kernels anywhere online.
Catégories
En savoir plus sur Multirate Signal Processing dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!