to write matlab code for sharpening filter?

pls write matlab code for sharpening filters using SOBEL OPERATERS.........

3 Comments

What have you done so far?
What is your question? When you want somebody to do your work, offering money is a standard method.
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.

Sign in to comment.

Answers (1)

Hint:
edgeImage = conv2(imageArray, sobelKernel, 'same');
You can find the Sobel kernels anywhere online.

Asked:

on 7 Jan 2013

Community Treasure Hunt

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

Start Hunting!