资源简介
FCM是一种实用的算法,在医学图像分割中被广泛应用,有很多的改进措施,本程序是基于FCM来分割MRI人脑图像
代码片段和文件信息
function out = distfcm(center data)
%DISTFCM Distance measure in fuzzy c-mean clustering.
% OUT = DISTFCM(CENTER DATA) calculates the Euclidean distance
% between each row in CENTER and each row in DATA and returns a
% distance matrix OUT of size M by N where M and N are row
% dimensions of CENTER and DATA respectively and OUT(I J) is
% the distance between CENTER(I:) and DATA(J:).
%
% See also FCMDEMO INITFCM IRISFCM STEPFCM and FCM.
% Roger Jang 11-22-94 6-27-95.
% Copyright 1994-2002 The MathWorks Inc.
% $Revision: 1.13 $ $Date: 2002/04/14 22:20:29 $
out = zeros(size(center 1) size(data 1));
% fill the output matrix
if size(center 2) > 1
for k = 1:size(center 1)
out(k :) = sqrt(sum(((data-ones(size(data 1) 1)*center(k :)).^2)‘));
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-04-30 09:08 fcm分割MRI人脑图像\
文件 163458 2011-02-27 11:25 fcm分割MRI人脑图像\222.bmp
文件 901 2011-04-30 08:18 fcm分割MRI人脑图像\distfcm.m
文件 3869 2011-04-30 08:17 fcm分割MRI人脑图像\fcm.m
文件 698 2011-04-30 08:18 fcm分割MRI人脑图像\initfcm.m
文件 1339 2011-04-30 08:18 fcm分割MRI人脑图像\stepfcm.m
文件 747 2011-04-30 08:19 fcm分割MRI人脑图像\Unti
相关资源
- mean_shift_segmentation mean shift图像分割软
- ImageSegmentation 多尺度分水岭变换分割
- regiongrow 利用区域标记进行区域分割
- imagesegmentation 压缩文件里有四种图像
- MRI_image_segmentation
- meanshiftsegmentation 均值漂移图像分割测
- LCV “An efficientlocalChan–Vesemodelforima
- Brain-MRI-Ssegmentation 自己写的分割脑组
- FCMLSM 改进的基于整合空间的模糊聚类
- MRF-segmentation
-
MRF-ba
sed-image-segmentation 基于马尔科夫 - paper-and-matlab-code 新发表论文Graph cut
- lungSegmentation
- imagesegmentation matlab图像分割实例
- MRMRF_imgSegmentation 基于多尺度MRF模型的
- Texture-Image-Segmentation- 纹理图像分割
- Fuzzy-clustering-image-segmentation
- image-segmentation
- double-threshold-segmentation
评论
共有 条评论