资源简介
基于FCM图像分割的matlab源代码 只有灰度图像的一个小程序,还不错
代码片段和文件信息
clear;clc;
IM=imread(‘4040.JPG‘);
IM=rgb2gray(IM);
IM=double(IM);
figure(1)
imshow(uint8(IM))
[maxXmaxY]=size(IM);
IMM=cat(4IMIMIMIM);
%%%%%%%%%%%%%%%%
cc1=8;
cc2=90;
cc3=180;
cc4=250;
ttFcm=0;
while(ttFcm<15)
ttFcm=ttFcm+1
c1=repmat(cc1maxXmaxY);
c2=repmat(cc2maxXmaxY);
c3=repmat(cc3maxXmaxY);
c4=repmat(cc4maxXmaxY);
c=cat(4c1c2c3c4);
ree=repmat(0.000001maxXmaxY);
ree1=cat(4reereereeree);
distance=IMM-c;
distance=distance.*distance+ree1;
daoShu=1./distance;
daoShu2=daoShu(::1)+daoShu(::2)+daoShu(::3)+daoShu(::4);
distance1=distance(::1).*daoShu2;
u1=1./distance1;
distance2=distance(::2).*daoShu2;
u2=1./distance2;
distance3=di
- 上一篇:matpower流程详解
- 下一篇:极化码的Matlab编解码仿真
相关资源
- mean_shift_segmentation mean shift图像分割软
- chapter9 图像分割
- Otsus 图像分割
- kfcm2828080
- imagesegmentation 压缩文件里有四种图像
- grabcut_matlab 三种基于GraphCut的图像分割
- levelsetcode_CV 在基于的图像分割方法中
- matting 图像抠图是将图像的目标物体从
- 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均值聚类
- MRI-brain-segmentation-using-FCM FCM是实用的
- MS_MATLAB 2.对图像中的某一点进行平移
- FCM-vs-ESSC 模糊聚类图像分割
- FCMLSM 基于FCM和水平集的图像分割
- MRF-ENCH 基于马尔科夫链的图像分割
- chepaishibie 基于matlab的车牌识别
- FCMLSM 改进的基于整合空间的模糊聚类
- FCM 模糊C均值聚类算法
- area_perimeter-and-aspect-ratio matlab数字图像
- SVM 一些使用支持矢量机进行图像分割
-
MRF-ba
sed-image-segmentation 基于马尔科夫 - svm_tuxiangfenge SVM支持向量机在图像分割
- homework22 图像分割及识别
评论
共有 条评论