资源简介
这是Lee滤波的实现代码,在sar图像的预处理中,Lee滤波用得比较多,对于研究sar图像的人来说具有重要的参考价值...
代码片段和文件信息
%Frost filter for speckle noise reduction
%Author : Jeny Rajan
function [ft]=frost(I)
% I is the noisy input image
tic
[x y z]=size(I);
I=double(I);
K=1;
N=I;
for i=1:x
for j=1:y
if (i>1 & i1 & j mat(1)=I(i-1j);
mat(2)=I(i+1j);
mat(3)=I(ij-1);
mat(4)=I(ij+1);
d(1)=sqrt((i-(i-1))^2);
d(2)=sqrt((i-(i+1))^2);
d(3)=sqrt((j-(j-1))^2);
d(4)=sqrt((j-(j+1))^2);
mn=mean(mean(mat));
c=mat-mn;
c2=c.^2;
c3=c/(c2+.0000001);
Cs=0.25*sum(sum(c3));
m(1)=exp(-K*Cs*d(1));
m(2)=exp(-K*Cs*d(2));
m(3)=exp(-K*Cs*d(3));
m(4)=exp(-K*Cs*d(4));
ms=sum(sum(m));
mp=m/ms;
N(ij)=sum(sum(mp.*mat));
end
end
end
toc
ft=uint8(N);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2844 2006-08-11 16:15 Lee滤波\Lee_Filter\Lee_Filter.mht
文件 969 2006-11-14 10:34 Lee滤波\sar\sar\frost.m
文件 2234 2006-11-14 10:35 Lee滤波\sar\sar\lee.m
文件 2085 2006-11-14 10:35 Lee滤波\sar\sar\kuan.m
目录 0 2007-03-01 15:10 Lee滤波\sar\sar
目录 0 2008-12-08 18:38 Lee滤波\Lee_Filter
目录 0 2008-12-08 18:38 Lee滤波\sar
目录 0 2008-12-08 18:39 Lee滤波
----------- --------- ---------- ----- ----
8350 9
相关资源
- 中文翻译论文:The wake-sleep algorithm
- 算法刷题LeetCode中文版
- ZT213LEEA.PDF
-
Ast
yleExtension 3.1 for vs2013 vs2015 vs201 - GoogleEarth7.1可用的hosts
- lee的caffe配置install-opencv-master.zip
- 读取EXCEL到JTABLE
- refined_Lee_fliter.rar
- googleearth与cad格式相互转换工具
- LeetCode cpp最新中文题解.pdf
- osg源码EagleEye,实现类似鹰眼图的效果
- 一个类似定时番茄钟的app源码
- samylee的yolo训练src
- leetair_10415254.zip
- muleesb.txt
- 封装CopyFileEx复制文件,提供同步、异
- Leetcode题目分类和解法总结Xmind
- leetcode大全
- 紫草LeERF-1基因在拟南芥中的异源表达
- leetcode-cpp (一些数据结构和经典算法
- leetcode中文版
- CMOS集成电路第二版答案THOMAS LEE
- bootstrap的tableExport插件包支持Excel、
- AssetsBundleExtractor_2.1d_64bit
- Googleearthlandsat8
- Google Earth 中国各省界.kml
- leetcode试题的答案
- LeetCode 完整版题解含代码,高清PDF
- AssetsBundleExtractor_2.2beta4_64bit.zip
- 机器视觉测量技术.pdf
评论
共有 条评论