to write matlab code for sharpening filter?
显示 更早的评论
pls write matlab code for sharpening filters using SOBEL OPERATERS.........
3 个评论
Walter Roberson
2013-1-7
What have you done so far?
Jan
2013-1-7
What is your question? When you want somebody to do your work, offering money is a standard method.
Image Analyst
2013-1-7
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.
回答(1 个)
Image Analyst
2013-1-7
Hint:
edgeImage = conv2(imageArray, sobelKernel, 'same');
You can find the Sobel kernels anywhere online.
类别
在 帮助中心 和 File Exchange 中查找有关 Multirate Signal Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!