搜索资源列表
DIP
- 需要matlab7.0或更高版本以及matlab图像处理工具箱。 1) 文件菜单 • 程序可处理具有不同宽高的灰度图像,显示区域多余的部分以白色填补; 注意:在做哈达马和沃氏变换时图像的尺寸先按2的幂次截断,在按最大的边长补成方形; • 重载可以重新载入最近一次通过“文件——〉打开”打开的图像,这时将对重新载入的图像进行处理; • 对于彩色图像,可以显示但如果想要使程序能正确处理,必须
rgb2gray
- 将RGB图像转换为灰度图像,本程序详细说明了转换原理和过程,还有腐蚀膨胀详细原理和程序
HthDip
- 数字图像处理实验vc源码,有RGB转换为YUV灰度图像,图像的直方图及中值滤波-digital image processing experiments vc source, RGB to YUV gray image, image histogram and median filtering
DIP
- 需要matlab7.0或更高版本以及matlab图像处理工具箱。 1) 文件菜单 • 程序可处理具有不同宽高的灰度图像,显示区域多余的部分以白色填补; 注意:在做哈达马和沃氏变换时图像的尺寸先按2的幂次截断,在按最大的边长补成方形; • 重载可以重新载入最近一次通过“文件——〉打开”打开的图像,这时将对重新载入的图像进行处理; • 对于彩色图像,可以显示但如果想要使程序能正确处理,必须
rgb2gray
- 将RGB图像转换为灰度图像,本程序详细说明了转换原理和过程,还有腐蚀膨胀详细原理和程序-RGB images will be converted to grayscale images, the procedure described in detail the principles and the process of conversion, as well as the expansion of corrosion principl
ctlcolortransform
- 把RGB彩色图像转换为灰度图像,用VC++实现-The RGB color image is converted to grayscale images, using VC++ to achieve
gray
- 展示了C#读取彩色图像,并且转换为灰度图的方法,读取图像时分别使用了getPixel,内存法,指针法,展示了C#读取图像的三种基本方法。-Convert a RGB image to gray image and give examples of reading image file with three different methods.
checks-RGB-show-and-grayscale
- 支票印鉴图的R、G、B三个分量的显示图像并将RGB图转换为灰度图像-Check seal map R, G, B three components of the display image was converted to grayscale and RGB images
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 th
color_trans
- 本代码用VC实现了把真彩色图像转换为8位图像,把RGB三个波段的灰度通过一个线性变换式计算为单波段灰度。 -transfer true color image to a 8-bit image
rgb
- 将二十四位的彩色图像转换为八位图像,即彩色图像灰度化。-20 four color image is converted to eight images, color images, grayscale.
Corners
- 首先,请检查/样品在你的OpenCV的分布/ C/ squares.c的。这个例子提供了一个方形的检测,如何检测角落类似的功能,它应该是一个不错的开始。然后,一起来看看在OpenCV的功能,导向功能,如cvCornerHarris()和cvGoodFeaturesToTrack()。 上述方法可以返回许多角落类似的功能 - 最不会“真正的角落”你正在寻找。在我的应用程序,我只好检测,旋转或倾斜的广场(透视)。我的检测流水线包括
TrueColor2SingleBand
- VC实现真彩色图像转换为8位图像,RGB三个波段的灰度通过一个线性变换式计算为单波段灰度。 -VC to achieve true color image is converted to 8-bit images, RGB three bands of gray calculated by a linear transformation of a single-band grayscale.
RGBtogray
- RGB图像转换为灰度图 RGB图像转换为灰度图-RGB image is converted to the grayscale RGB image is converted to grayscale
grating
- 基于opencv简单的将rgb图像转换为灰度图像。-Simply, based on opencv,a rgb image is converted to a grayscale image.
chap6
- 将RGB图像转换为二值图像以及将矩阵转换为灰度图像-The RGB image is converted into a binary image, and the image is converted to grayscale matrix
GUITest
- matlab简单GUI设计,打开文件夹,显示图像及RGB各通道,转换为灰度图,负像,及图像的保存-Matlab GUI
RGB2Gray-C6748DSP
- 将RGB格式的图像转换为灰度模式。 使用TI C6748 DSP 在CCS5.5下运行-convert RGB image to grey code. use in C6748DSP. written under CCS5.5.
图像转换
- 运用MATLAB内置函数,直接将RGB图像转换为灰度图像(Using MATLAB built-in function, the RGB image is directly transformed into gray image)
图像去雾方法
- 讲述图像去雾的四种方法: 第一种方法: 将图像从RGB空间转化到HIS空间,然后对亮度和饱和度进行均衡 方法二:见代码 方法三: 将图像从RGB空间转化到YUV空间,对亮度信息做直方图均衡 方法四; 将彩色图像转换为灰度图像后,再做直方图均衡法。