资源简介
模糊C均值聚类算法(FLICM),基于局部信息,在FCM聚类算法的基础上结合图像的邻域信息,有更好的鲁棒性。
代码片段和文件信息
function [center U obj_fcn] = FLICM(data cluster_n neighbor_pos window_d options)
if nargin ~= 4 & nargin ~= 5
error(‘Too many or too few input arguments!‘);
end
data_n = size(data 1);
in_n = size(data 2);
% Change the following to set default options
default_options = [2; % exponent for the partition matrix U
300; % max. number of iteration
1e-5; % min. amount of improvement
0]; % info display during iteration
if nargin == 4
options = default_options;
else
% If “options“ is not fully specified pad it with default values.
if length(options) < 4
tmp = default_options;
tmp(1:length(options)) = options;
options = tmp;
end
% If some entries of “options“ are nan‘s replace them with defaults.
nan_index = find(isnan(options)==1);
optio
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-04-21 20:24 FLICM\
文件 1662 2013-06-12 22:56 FLICM\FLICM.m
文件 836 2013-06-12 22:56 FLICM\FLICM_find_neighbor.m
文件 1126 2010-11-04 18:28 FLICM\FLICM_step.m
文件 1371 2015-04-21 20:58 FLICM\Unti
文件 1675 2015-04-21 20:27 FLICM\Unti
文件 5716 2013-06-08 17:53 FLICM\bacteria.jpg
文件 59640 1996-10-25 22:11 FLICM\eight.tif
文件 10546 2005-09-21 19:00 FLICM\lena.jpg
文件 20890 2013-06-08 17:47 FLICM\romantic.jpg
- 上一篇:matlab分数阶混沌程序
- 下一篇:三电平三相三线制APF
相关资源
- image-texture-features 图像纹理特征提取
- Hu-Zernike
- A-DDE-Algorithm 红外图像分层处理及动态
- BlurKernelEstimation 模糊图像去模糊处理
- 图像groundtruth
- matlab高光谱图像处理
- BP神经网络实现图像压缩
- matlab 道路障碍物识别
- 改进后的海森矩阵算法(Hessian )代码
- matlab实现的稀疏表示的遥感图像融合
- fill_Matlab Matlab实现的孔洞填充算法
- 改进的LBP算法CLBP实现图像纹理特征的
- 对Indian pines高光谱图像进行分类(K
- SLICPdbscan 运用超像素分割算法对图像
- iran-sar-image insar图像数据
- 提取图像中河流和道路 Line-detection
- 对卷积神经网络算法进行大量图像数
- PCA-SVM-master PCA/SVM算法实现图像分类
- FCM方法对彩色图像进行分割
- RF_Class_C随机森林算法对图像特征分类
- matlab实现的图像栅格化
- 一整套基于小波变换的的图像融合算
- 高鲁棒性的自适应图像加密算法
- 用matlab做图像检索
- 机器视觉之模糊图像复原 (Image-Res
- matlab实现多幅图像拼接
- 图像的自动多阈值分割
- otsu 多维OTSU阈值分割方法
- 图像处理模式识别一种分类算法:svm
- 采用稀疏表示的图像融合方法
评论
共有 条评论