MATLAB: I want to sharp image so plz send equation of h(t) to sharp image

equatio. of sharpningImage Processing Toolbox

x

Best Answer

Try this high boost filter:
kernel = [-1,-1,-1; -1,17,-1; -1,-1,-1]/9;
sharpenedImage = conv(double(grayImage), kernel, 'same');
imshow(sharpenedImage, []);
If you want something more specific to your needs then please provide a better question. A message body of "x" just doesn't provide enough information for a quality answer.
Related Question