필터 지우기
필터 지우기

how to use LEE filter in image ?, give example matlab code.....

조회 수: 4 (최근 30일)
Nivetha m
Nivetha m 2016년 4월 4일
댓글: Nivetha m 2016년 4월 5일
lee filter, laplacian filter, butterworth filter, range filter............

답변 (1개)

Walter Roberson
Walter Roberson 2016년 4월 4일
  댓글 수: 1
Nivetha m
Nivetha m 2016년 4월 5일
I GET THIS KIND OF ERROR IN BELOW CODE.PLEASE HELP TO SOLVE THIS CODE.(??? Undefined function or method 'computelee' for input arguments of type 'double'.
Error in ==> Lee_filter_C at 29 Y(i,j) = computelee(Rvar,K(Indx),K(:)');
Error in ==> lee at 12 K = Lee_filter_C(I,J,[5 5]);)
clc clear all close all %Read an Image I = imread('C:\Users\shankar\Documents\MATLAB\filtering\box.jpg'); I=rgb2gray(I); figure(1),imshow(I); %Add multiplicative noise to the image J = imnoise(I,'speckle',0.01); figure(2),imshow(J); %Apply Lee filter K = Lee_filter_C(I,J,[5 5]); figure(3),imshow(uint8(K));

댓글을 달려면 로그인하십시오.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by