搜索资源列表
DIP
- 需要matlab7.0或更高版本以及matlab图像处理工具箱。 1) 文件菜单 • 程序可处理具有不同宽高的灰度图像,显示区域多余的部分以白色填补; 注意:在做哈达马和沃氏变换时图像的尺寸先按2的幂次截断,在按最大的边长补成方形; • 重载可以重新载入最近一次通过“文件——〉打开”打开的图像,这时将对重新载入的图像进行处理; • 对于彩色图像,可以显示但如果想要使程序能正确处理,必须将其先转换成灰度图像,使用“文件——〉RGB转换成灰度图”;
rgb2gray
- 将RGB图像转换为灰度图像,本程序详细说明了转换原理和过程,还有腐蚀膨胀详细原理和程序
rgb
- 将二十四位的彩色图像转换为八位图像,即彩色图像灰度化。-20 four color image is converted to eight images, color images, grayscale.
PseudoColorImageProcessing
- 本实验要求编写程序实现课本图6.23伪彩色图像处理能力框图,实现灰度级到彩色的转换,程序的输入为图像中指定的两个灰度级范围,程序的输出为RGB格式图像,其中一个灰度级范围显示为指定的彩色,其余的像素以RGB形式显示为与对应输入图像像素相同的灰度色-Prepared at the request of the experimental procedures to achieve pseudo-textbook Figure 6.23 Block diagram of color image pro
ctlcolortransform
- 把RGB彩色图像转换为灰度图像,用VC++实现-The RGB color image is converted to grayscale images, using VC++ to achieve
rgbtogray
- 把256色彩色图像转换为8位灰度图像,文件通过窗口菜单打开,保存-convert rgb image to gray image
grs2rgb
- 用MATLAB实现将灰度图像转换为伪彩色图像。-Convert grayscale images to RGB using specified colormap.
matlab-rgb-image-divide
- 传统的图像阈值分割算法是将彩色图像转换为灰度图像再进行分割。通过分析RGB颜色空间的特点,本文提出 基于RGB颜色空间的阈值分割算法,-The classical image threshold segmentation algorithm converts the color image to grayseah image before segmentation. On the base of analysis upon the characters of RGB color spac
TrueColor2SingleBand
- VC/C++源码,图形处理,图像转换 VC实现真彩色图像转换为8位图像,RGB三个波段的灰度通过一个线性变换式计算为单波段灰度。 关于代码: DWORD _width1 = WIDTHBYTES(width*8) //保存的8bits位图保存宽度 DWORD bytesCount1 = _width0*height //存储该真彩色位图数据段所用的字节数,不是像素数 DWORD bytesCount2 = _width1*height //存储8b
hfcRGB
- 在对图像进行处理时,将得到的灰度图像转换为RGB图像,从而更加方便比较。-Image processing, the grayscale image is converted to RGB images, in order to facilitate comparison.
RGBtogray
- RGB图像转换为灰度图 RGB图像转换为灰度图-RGB image is converted to the grayscale RGB image is converted to grayscale
GUITest
- matlab简单GUI设计,打开文件夹,显示图像及RGB各通道,转换为灰度图,负像,及图像的保存-Matlab GUI
gray2rgb
- 该文件将一幅灰度图像转换为彩色图像,是基于图像的颜色空间密度图像,密度图像与原始的灰度图像越匹配,着色越好-This Program converts a gray image ro RGB image based on the colors of the destination image. The better the destination image match with the source gray image, the better the coloring will be.
RGB2Gray-C6748DSP
- 将RGB格式的图像转换为灰度模式。 使用TI C6748 DSP 在CCS5.5下运行-convert RGB image to grey code. use in C6748DSP. written under CCS5.5.
guo
- 24位彩色图的直方图均衡化有两种方式,一种是把彩色度的R、G、B分量分别看做一个灰度级进行直方图的均衡化。这种方式会使RGB之间的颜色对比会发生变化,造成颜色的失真。另一种方法是先将24位真彩色图的RGB分量转换为HIS分量,仅对其中的I分量进行直方图的均衡化,最后将均衡、化后的I分量与原来的H、S分量一起逆变换回RGB分量表示,两种方法都在代码中实现,希望对大家有所帮助!(histogram equalization)