搜索资源列表
RGB2gray
- 本程序可将输入的RGB图像转化为灰度图像!在Matlab环境下编程实现。-this procedure can be imported RGB images into gray image! Matlab programming environment.
image_process
- This file include some image process program: void ImResize(IMAGEDATA *pRtImg, IMAGEDATA *pSrImg, int nFixSize) bool CalMoments(float Moments[7], IMAGEDATA *pSrImg) void RGB2Gray(IMAGEDATA *pRtImg, IMAGEDATA *pSrImg) void Im2Bw(IMAGEDATA *pR
rgb2gray
- 将RGB图像转换为灰度图像,本程序详细说明了转换原理和过程,还有腐蚀膨胀详细原理和程序
Rgb2gray
- 用于灰度图像上色
rgb2gray
- 在Visual C++环境下实现真彩色图像转换为灰度图像的源代码,还有所用的图片-In Visual C++ environment to achieve true color image is converted to grayscale the source code, there are pictures used
A2008
- awimg=rgb2gray(im1) tic [accum, circen, cirrad] = CircularHough_Grd(rawimg, [20 30],5,50) circen toc figure(1) imagesc(accum) axis image title( Accumulation Array from Circular Hough Transform ) figure(2) imagesc(rawimg) co
rgb2gray_OK
- 本人写的彩色图像转灰度图像的工程,请确保你的机器上安装有VC6等开发工具。-I wrote the color image to gray image of the project, please make sure your machine is equipped with development tools such as VC6.
Low-complexity-background-subtraction-using-frame
- Tracking w/ blob detection, morphological operation (Togeather) frames = {avi.cdata} uses the cdata from the video file fg = extractForeground(frames) do foreground extraction cmap = colormap(gray) for i = 1:length(fg) temp0{i} = edg
RGB2GRAY
- MATLAB图像处理程序,批量将彩色图片转换成灰色图像,用于其他图像处理程序-MATLAB image processing, batch convert color pictures of the gray image used for other image processing program
RGB2GRAY
- Visual C++程序,将256色图像转化为灰度图像!-Visual C++ program, 256 color images into grayscale images!
Image-processing
- 大量有关图形图像处理的基本程序 ,内有dither 函数 gray2ind 函数 grayslice 函数 im2bw 函数 ind2gray 函数 ind2rgb 函数 mat2gray 函数 rgb2gray 函数 rgb2ind 函数 等程序。二值化处理、图像分割、图像变换等方法-Graphics image processing procedures, which are the dither function gray2ind function grayslice functions
Demo_CS_CoSaMP
- 压缩感知CS_CoSaMP图像重构 代码中图像链接根据你所要处理的图像所在位置自行修改,有些图像需要用rgb2gray语句进行灰度图像转换处理,恢复度大约23db左右。-Compressed sensing image reconstruction by CS_CoSaMP
image-processing1
- • 用‘imread’命令读取图像,观察图像像素矩阵的取值范围。 • 用‘rgb2gray’命令把彩色图像转换为灰度图像。 • 用’imshow’命令显示原始图像。 • 把原始图像的局部区域存储到另一个矩阵中,显示局部区域-• Use the imread command reads the range image, observed image pixel matrix. • Use rgb2gray c
Gabor_Image_Features
- Gabor特征计算:平均能量和平均幅值[gaborSquareEnergy, gaborMeanAmplitude ]= phasesym(im) -Computation of Gabor Features- Mean Squared Energy, Mean Amplitude >>> im = rgb2gray(imread( 001.png )) >>> [gaborSquareEnergy, gaborMeanAmplitude
type-rgb2gray
- 以R、G、B为轴建立空间直角坐标系,则RGB图的每个象素的颜色可以用该三维空间的一个点来表示, 而Gray图的每个象素的颜色可以用直线R=G=B上的一个点来表示。于是rgb转gray图的本质就是寻找 一个三维空间到一维空间的映射,最容易想到的就是射影(即过rgb空间的一个点向直线R=G=B做垂线)-With R, G, B axis to build the space right angle coordinate system, then each pixel of RGB graph
GetRingpoint
- 灰度图形,提取一段圆环区域,并自动计算整个提取区域的灰度均值-rgb2gray , count the average of the ring gray
MATLAB_PICTURE_PROCESSING
- 使用MATLAB,实现以下四个功能 一、获取图片RGB值:给定一张图片,获取点(x,y),以及(x,y)周围8个点的R、G、B值。 二、实现rgb2gray函数:使用matlab实现rgb2gray的功能,并能计算出转换后灰度图片的方差。 三、灰度图对比度增强:分别使用灰度拉伸和直方图均衡化,增强给定图的对比度。 四、图像去噪:对给定图片加椒盐噪声,并选择两个去噪算法去除椒盐噪声。 -Using MATLAB, to achieve the following four fu
RGB2Gray-C6748DSP
- 将RGB格式的图像转换为灰度模式。 使用TI C6748 DSP 在CCS5.5下运行-convert RGB image to grey code. use in C6748DSP. written under CCS5.5.
1.3 图像的边缘检测
- 1.3-1 a=imread('xinglong.jpg'); a=rgb2gray(a); e=log_edge(a,0.25) 1.3-2 a=imread('lena.bmp'); e=canny_edge(a,0.25); 注:该程序要求输入的图像的长、宽应相等。 1.3-3 为1.3-2的子程序 1.3-4 im=imread('lena.bmp'); image_out = susan(im,0.25); 1.3-5 为1.3-4的子程序
rgb2gray
- convert RGB image to a gray image(using function to change the color of an image)