how to find high pass filtered version of a image with 3 by 3-pixel standard approximation of the Laplacian operator?
조회 수: 2 (최근 30일)
이전 댓글 표시
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
답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!