how to find high pass filtered version of a image with 3 by 3-pixel standard approximation of the Laplacian operator?
2 views (last 30 days)
Show older comments
I want to find out the edge preservation index (beta)of medical images.Are the following MATLAB codes give me the high pass filtered version of a gray -scale image, obtained with a 3 by 3-pixel standard approximation of the Laplacian operator? please help me as soon as possible..
clc;
clear all;
close all;
img=imread('my image.jpg');
H = fspecial('laplacian');
k = imfilter(img,H);
0 Comments
Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!