资源简介
log gabor 滤波器matlab程序 log gabor 滤波器matlab程序
代码片段和文件信息
% gaborconvolve - function for convolving each row of an image with 1D
% log-Gabor filters(利用一维盖伯滤波器对图像进行处理)
% Usage:
% [template mask] = createiristemplate(eyeimage_filename)
% Arguments:
% im - the image to convolve
% nscale - number of filters to use
% minWaveLength - wavelength of the basis filter
% mult - multiplicative factor between each filter
% sigmaOnf - Ratio of the standard deviation of the Gaussian describing
% the log Gabor filter‘s transfer function in the frequency
% domain to the filter center frequency.
% Output:
% E0 - a 1D cell array of complex valued comvolution results
function [EO filtersum] = gaborconvolve(im nscale minWaveLength mult ...
sigmaOnf)
[rows cols] = size(im);
%filtersum = zeros(1size(im2));
EO = cell(1 nscale); % Pre-allocate cell array
ndata = cols;
if mod(ndata2) == 1 % If there is an odd No of data poin
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
I.A.... 2299 2018-02-26 10:23 gaborconvolve.m
----------- --------- ---------- ----- ----
2299 1
相关资源
- 全面详解LTE MATLAB建模、仿真与实现
- adaboost 的matlab代码
- 《信号与系统》MATLAB教程.pdf
- 卷积神经网络完成程序matlab.zip
- matlab图像检索
- 卷积神经网络经典代码
- 现代通信系统第二版MATLAB版) 包括全
- 卡尔曼滤波 Matlab程序
- 稀疏编码matlab 教程
- 系统辨识资料大全(matlab系统辨识工
- 化学计量学方法及MATLAB实现
- MATLAB Neural Network Toolbox官方教程
- Inverse Synthetic Aperture Radar Imaging with
- matlab GUI设计
- 雷达压制干扰matlab程序
- 系统辨识,使用者的理论
- MATLAB仿真林飞、杜欣编著.pdf
- 基于HMM的语音识别MATLAB代码
- 关于均衡的MATLAB程序合集
- 数字滤波器的MATLAB与FPGA实现代码
- 滑模变结构控制MATLAB仿真 第3版 基本
- Matlab火焰烟雾检测(GUI)
- 帧间差分法matlab
- Matlab MPT工具箱 MPT3.2.1 (2019更新 稳
- 《模式识别与智能计算的MATLAB实现》
- 基于sift和SVM算法实现的手势识别 MA
- 数字图像处理第三版冈萨雷斯英文附
- 《精通MATLAB图像处理》全书pdf高清完
- 斯坦福机器学习公开课CS229讲义作业及
- MATLAB神经网络30个案例分析(高清版)
评论
共有 条评论