-
大小: 12KB文件类型: .zip金币: 1下载: 0 次发布日期: 2021-05-14
- 语言: Matlab
- 标签: 图像分割 模糊聚类 FCM FuzzyC-Means
资源简介
FLICM 算法,是一种基于局部空间信息模糊聚类的鲁棒图像分割算法,来自论文"A Robust Fuzzy Local Information C-Means Clustering Algorithm", IEEE Transactions on Image Processing 19(5) 2010 1328-1337, doi: 10.1109/TIP.2010.2040763,使用Matlab R2018b编写,皆用矩阵计算。
代码片段和文件信息
function varargout = colorspace(Conversionvarargin)
%COLORSPACE Convert a color image between color representations.
% B = COLORSPACE(SA) converts the color representation of image A
% where S is a string specifying the conversion. S tells the
% source and destination color spaces S = ‘dest<-src‘ or
% alternatively S = ‘src->dest‘. Supported color spaces are
%
% ‘RGB‘ R‘G‘B‘ Red Green Blue (ITU-R BT.709 gamma-corrected)
% ‘YPbPr‘ Luma (ITU-R BT.601) + Chroma
% ‘YCbCr‘/‘YCC‘ Luma + Chroma (“digitized“ version of Y‘PbPr)
% ‘YUV‘ NTSC PAL Y‘UV Luma + Chroma
% ‘YIQ‘ NTSC Y‘IQ Luma + Chroma
% ‘YDbDr‘ SECAM Y‘DbDr Luma + Chroma
% ‘JPEGYCbCr‘ JPEG-Y‘CbCr Luma + Chroma
% ‘HSV‘/‘HSB‘ Hue Saturation Value/Brightness
% ‘HSL‘/‘HLS‘/‘HSI‘ Hue Saturation Luminance/Intensity
% ‘XYZ‘ CIE XYZ
% ‘Lab‘ CIE L*a*b* (CIELAB)
% ‘Luv‘ CIE L*u*v* (CIELUV)
% ‘Lch‘ CIE L*ch (CIELCH)
%
% All conversions assume 2 degree observer and D65 illuminant. Color
% space names are case insensitive. When R‘G‘B‘ is the source or
% destination it can be omitted. For example ‘yuv<-‘ is short for
% ‘yuv<-rgb‘.
%
% MATLAB uses two standard data formats for R‘G‘B‘: double data with
% intensities in the range 0 to 1 and uint8 data with integer-valued
% intensities from 0 to 255. As MATLAB‘s native datatype double data is
% the natural choice and the R‘G‘B‘ format used by colorspace. However
% for memory and computational performance some functions also operate
% with uint8 R‘G‘B‘. Given uint8 R‘G‘B‘ color data colorspace will
% first cast it to double R‘G‘B‘ before processing.
%
% If A is an Mx3 array like a colormap B will also have size Mx3.
%
% [B1B2B3] = COLORSPACE(SA) specifies separate output channels.
% COLORSPACE(SA1A2A3) specifies separate input channels.
% Pascal Getreuer 2005-2006
%%% Input parsing %%%
if nargin < 2 error(‘Not enough input arguments.‘); end
[SrcSpaceDestSpace] = parse(Conversion);
if nargin == 2
Image = varargin{1};
elseif nargin >= 3
Image = cat(3varargin{:});
else
error(‘Invalid number of input arguments.‘);
end
FlipDims = (size(Image3) == 1);
if FlipDims Image = permute(Image[132]); end
if ~isa(Image‘double‘) Image = double(Image)/255; end
if size(Image3) ~= 3 error(‘Invalid input size.‘); end
SrcT = gettransform(SrcSpace);
DestT = gettransform(DestSpace);
if ~ischar(SrcT) & ~ischar(DestT)
% Both source and destination transforms are affine so they
% can be composed into one affine operation
T = [DestT(:1:3)*SrcT(:1:3)DestT(:1:3)*SrcT(:4)+DestT(:4)];
Temp = zeros(size(Image));
Temp(::1) = T(1)*Image(::1) + T(4)*Image(::2) + T(7)*Image(::3) + T(10);
Temp(::2) = T(2)*Image(::1) + T(5)*Image(::2) + T(8)*Imag
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2020-10-10 14:20 FLICM图像分割算法\
文件 13703 2018-01-29 22:31 FLICM图像分割算法\colorspace.m
文件 3404 2020-10-10 14:20 FLICM图像分割算法\FLICM.asv
文件 3422 2020-10-10 14:21 FLICM图像分割算法\FLICM.m
文件 1175 2020-09-12 19:10 FLICM图像分割算法\Label_image.m
文件 66614 2016-12-22 16:41 FLICM图像分割算法\sy2.bmp
- 上一篇:MATLAB计算对极线程序
- 下一篇:arma模型_matlab源码
相关资源
- 光伏mppt模糊控制的模型
- 图像模糊C均值聚类分割matlab代码
- FCM模糊聚类matlab代码
- 模糊综合评价matlab程序
- 图像处理/图像分割实验/(自动)阈值
- 模糊C均值聚类算法
- 不同波形的模糊函数
- fuzzy-pid(模糊PID控制器)matlab simuli
- 基于均值漂移mean shift算法的图像分割
- 基于水平集CV模型的图像分割Matlab代码
- 盲反卷积算法复原图像
- 小波模极大值边缘检测+膨胀+边缘跟踪
- CW HFM LFM宽带模糊函数仿真代码.m
-
BLDCM simuli
nk 模糊控制仿真 - 模糊逻辑控制器
- 指针式仪表识别方法,确定指针式仪
- 把图像分割成RGB通道的MATLAB代码
- 图像分割算法研究与实现
- 基于贝叶斯算法的图像像素分割
- 模糊PID的MATLAB程序
- 基于标记的分水岭算法matlab程序
- 基于变速模糊-PI混合控制的直流电机
- 时滞系统的模糊PID控制的matlab/simuli
- MATLAB图像分割提取算法源代码---车牌
- 模糊控制器与PID控制器_性能对比 基于
- 采用基于区域的种子区域生长方法(
- 模糊滑膜控制matlab
- 混沌同步程序matlab
- 模糊温度控制器的设计与Matlab仿真
- 水平集图像分割的Matlab程序代码
评论
共有 条评论