资源简介
颜色特征提取,颜色直方图,为matlab 源文件
代码片段和文件信息
function colorhist = colorhist(rgb)
% CBIR_colorhist() --- color histogram calculation
% input: MxNx3 image data in RGB
% output: 1x256 colorhistogram <== (HxSxV = 16x4x4)
% as the MPEG-7 generic color histogram descriptor
% [Ref] Manjunath B.S.; Ohm J.-R.; Vasudevan V.V.; Yamada A. “Color and texture descriptors“
% IEEE Trans. CSVT Volume: 11 Issue: 6 Page(s): 703 -715 June 2001 (section III.B)
% check input
if size(rgb3)~=3
error(‘3 components is needed for histogram‘);
end
% globals
H_BITS = 4;
S_BITS = 2;
V_BITS = 2;
% convert to hsv为什么要用hsv
hsv = uint8(255*rgb2hsv(rgb));
imgsize = size(hsv);
% get rid of irrelevant boundaries
i0=round(0.05*imgsize(1)); i1=round(0.95*imgsize(1));
j0=round(0.05*imgsize(2)); j1=round(0.95*imgsize(2));
hsv = h
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 95 2011-12-21 10:25 colorhist\新建 文本文档.txt
文件 1303 2009-02-23 21:58 colorhist\colorhist.m
目录 0 2011-12-21 10:58 colorhist
----------- --------- ---------- ----- ----
1398 3
相关资源
- colorhistgram 获得目标的颜色直方图
- meanshiftsegmentation 均值漂移图像分割测
- ColorHistogram 图像检索——提取颜色特
- tezhengtiqu 基于小波变换的特征提取
- 37724099hsvfeature1 基于视觉特征的图像特
- aaa 基于颜色的图像检索系统
- ImageSearch 基于图像颜色矩和纹理的图
- Image-Similar 本文讲述了基于图像颜色直
- 基于颜色的图像检索代码
- 让颜色对应数值,matlab colormap
- matlab实现的非等间隔量化的HSV颜色特
- 基于颜色特征和纹理特征的matlab原程
- 在YCbCr颜色空间上实现肤色检测的函数
- RGB YUV颜色空间转换matlab实现
- RGB到YIQ,RGB到HSI,RGB到YcbCr,RGB到XY
- 用MATLAB把统计灰度图中每种颜色数目
- 颜色聚合向量matlab
评论
共有 条评论