How to improve the result of the performance of the gabor filter
2 ビュー (過去 30 日間)
表示 古いコメント
feats=gabfilter(fn1,25,[0.05 0.1],[6 6]);
0 件のコメント
回答 (1 件)
Yusuf Suer Erdem
2021 年 11 月 20 日
Example below is a gabor filter example. When you change the wavelength and the orientation. You ll get images with different qualities.
clc; clear; close all;
I = imread('board.tif');
I = rgb2gray(I);
wavelength = 4;
orientation = 90;
[mag,phase] = imgaborfilt(I,wavelength,orientation);
tiledlayout(1,3)
nexttile
imshow(I)
title('Original Image')
nexttile
imshow(mag,[])
title('Gabor Magnitude')
nexttile
4 件のコメント
参考
カテゴリ
Find more on Biomedical Imaging in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!