资源简介
匹配滤波源码,详情见http://blog.csdn.net/u013288466/article/details/66473284

代码片段和文件信息
function [image2MatchFilterKernel] = MatchFilter(image1sigmayLength direction_number)
% sample:
% sigma=[2.^(1/2) 2 2*2.^(1/2) 4];
% yLength=9;
% direction_number=12;
% for a=sigma
% [MF~] = MatchFilter(img a yLengthdirection_number);
% MF(mask==0) = 0;
% MF = normalize(double(MF));
% % Adding to features
% features = cat(3 features MF);
% end
[a b] = size(image1);
image1 = double(image1);
MatchFilter_image=zeros(abdirection_number);
for i = 1:direction_number
MatchFilterKernel = MatchFilterAndGaussDerKernel(sigmayLength pi/direction_number*(i-1)0);
MatchFilter_image(::i) = conv2(image1MatchFilterKernel‘same‘);
% [xy]=meshgrid(1:171:17);
% mesh(xyMatchFilterKernel);
end
image2 = max(MatchFilter_image[]3);
image2 = uint8(image2);
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 121 2015-02-03 16:24 normalize.m
文件 888 2017-03-03 12:15 MatchFilter.m
文件 3963 2016-10-19 10:54 MatchFilterAndGaussDerKernel.m
文件 2138 2017-03-04 10:45 MatchFilterWithGaussDerivative.m
文件 1800 2015-02-03 16:22 MatchFilterWithGaussDerivativeORSF.m
----------- --------- ---------- ----- ----
8910 5
- 上一篇:最大熵模型
- 下一篇:Matlab实现2048游戏经典
相关资源
-
基于Simuli
nk的匹配滤波器设计 - 最佳接收机的实现与仿真,matlab仿真
- 能量检测、匹配滤波器检测、合作式
- 产生LFM信号分析其频谱运用频域匹配
- 匹配滤波器设计实验报告
- 雷达匹配滤波和脉冲压缩matlab仿真及
- 匹配滤波器的简单仿真
- QPSK调制解调+误码率统计+成型滤波+匹
- matlab提取视网膜血管
- 线性FM波形的匹配滤波Matlab实现
-
OQPSK的Matlab_Simuli
nk调制解调仿真系统 - 线性调频信号匹配滤波
- matlab 线性调频信号匹配滤波
- LFM匹配滤波
- 匹配滤波器原理及matlab实现
- LFM及匹配滤波的MATLAB程序
- match_filter(匹配滤波代码matlab
- Trigger Algorithm 算法
- 图像匹配滤波器Matlab程序 附注释
- mimo MIMO中的预编码方案
- pipeilvbo 匹配滤波器的实现。主要是通
评论
共有 条评论