资源简介
个比较经典的二维经验模式分解程序代码,适用于图像分解,加油
代码片段和文件信息
function imf = emd(x)
% Empiricial Mode Decomposition (Hilbert-Huang Transform)
% imf = emd(x)
x = transpose(x(:));
imf = [];
while ~ismonotonic(x)
x1 = x;
sd = Inf;
while (sd > 0.1) | ~isimf(x1) %#ok
s1 = getspline(x1);
s2 = -getspline(-x1);
x2 = x1-(s1+s2)/2;
sd = sum((x1-x2).^2)/sum(x1.^2);
x1 = x2;
end
imf{end+1} = x1; %#ok
x = x-x1;
end
imf{end+1} = x;
function s = getspline(x)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 991 2009-07-23 16:53 emd .m
----------- --------- ---------- ----- ----
991 1
相关资源
- LBP 纹理模式的LBP特征表示及分类原理
- mean_shift_segmentation mean shift图像分割软
- PCA_SVM 此方法采用经典的PCA对人脸图像
- multiimagepocs 对多帧图像进行超分辨率
- chapter9 图像分割
- Otsus 图像分割
- imagesegmentation 压缩文件里有四种图像
- grabcut_matlab 三种基于GraphCut的图像分割
- levelsetcode_CV 在基于的图像分割方法中
- matting 图像抠图是将图像的目标物体从
- aaa 关于遥感图像分类方面的程序源代
- CVPR09-ScSPM
- image_processing 本程序是基于Matlab的米粒
- ImageSegament 基于遗传算法的图像分割
- meanshiftsegmentation 均值漂移图像分割测
- LBF “Implicit Active Contours Driven by Loca
- LCV “An efficientlocalChan–Vesemodelforima
- K-mean 基于纹理度量的图像分割
- a-level-set-inariable-distance 李春明提出的
- tuxiangfenge Matlab边缘检测和区域生长图
- Kmeans-MATLAB 该代码能够实现K均值聚类
- MS_MATLAB 2.对图像中的某一点进行平移
- FCM-vs-ESSC 模糊聚类图像分割
- POCS-SuperResulution 本程序主要实现低分
- FCMLSM 基于FCM和水平集的图像分割
- MRF-ENCH 基于马尔科夫链的图像分割
- chepaishibie 基于matlab的车牌识别
- area_perimeter-and-aspect-ratio matlab数字图像
- SVM 一些使用支持矢量机进行图像分割
-
MRF-ba
sed-image-segmentation 基于马尔科夫
评论
共有 条评论