Welcome![Sign In][Sign Up]
Location:
Search - rgb2gray matlab

Search list

[Special EffectsRGB2gray

Description: 本程序可将输入的RGB图像转化为灰度图像!在Matlab环境下编程实现。-this procedure can be imported RGB images into gray image! Matlab programming environment.
Platform: | Size: 1432 | Author: 宋军 | Hits:

[matlabgray2rgb

Description: Change gray image to rgb image-Change gray image to image rgb
Platform: | Size: 63488 | Author: ying | Hits:

[Special EffectsRGB2gray

Description: 本程序可将输入的RGB图像转化为灰度图像!在Matlab环境下编程实现。-this procedure can be imported RGB images into gray image! Matlab programming environment.
Platform: | Size: 1024 | Author: 宋军 | Hits:

[Special Effectsrgb2gray

Description: 将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 principles and procedures in detail
Platform: | Size: 1024 | Author: zhangzhehui | Hits:

[Special EffectsA2008

Description: 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) colormap( gray ) axis image hold on plot(circen(:,1), circen(:,2), r+ ) for k = 1 : size(circen, 1), DrawCircle(circen(k,1), circen(k,2), cirrad(k), 32, b- ) end hold off title([ Raw Image with Circles Detected , ... (center positions and radii marked) ]) figure(3) surf(accum, EdgeColor , none ) a
Platform: | Size: 14336 | Author: money | Hits:

[matlabgray2rgb

Description: matlab提供了rgb2gray的函数,但是如果gray想要换成rgb,就要自己写了。-matlab function rgb2gray provided, but if you want gray into rgb, should write their own.
Platform: | Size: 1024 | Author: 竹笑 | Hits:

[matlabRGB2gray

Description: matlab 中用来将rgb数据转换成灰度图像的源代码-matlab used to the rgb data into gray-scale image of the source code for
Platform: | Size: 1024 | Author: discovery | Hits:

[Graph programrgb2gray

Description: 可将输入的RGB图像转化为灰度图像!在Matlab环境下编程实现。-RGB images can be input into a gray-scale image! In the Matlab programming environment.
Platform: | Size: 2048 | Author: JASON | Hits:

[matlabrgb2gray

Description: 最基本的由彩色图像转换为灰度图像的代码。在matlab中运行图像处理时用到的最基本源码,但是很多matlab中并不含有这个函数。-The most basic color images by gray-scale image is converted to code. In the matlab image processing used to run the most basic source code, but many do not contain this function in matlab.
Platform: | Size: 1024 | Author: 赵晓霞 | Hits:

[Graph programdibazhang

Description: 数字图像原理包括8.1 图像 8.2 数字图像处理学 8.2.1 数字图像处理方法 8.2.2 数字图像处理的主要内容 8.3 图像文件格式 8.4 图像类型 8.4.1 索引图像 8.4.2 灰度图像 8.4.3 RGB 图像 8.4.4 二值图像 8.4.5 图像序列 8.4.6 图形类型判断 8.5 图像类型转换 8.5.1 dither 函数 8.5.2 gray2ind 函数 8.5.3 grayslice 函数 8.5.4 im2bw 函数 8.5.5 ind2gray 函数 8.5.6 ind2rgb 函数 8.5.7 mat2gray 函数 8.5.8 rgb2gray 函数 8.5.9 rgb2ind 函数 8.6 MATLAB 中的 8 位和 16 位图像 8.6.1 8 位和 16 位索引图像 8.6.2 8 位和 16 位灰度图像 8.6.3 8 位和 16 位 RGB 图像 8.7 图像文件的操作 8.7.1 查询图像文件的信息 8.7.2 图像文件的读取 8.7.3 图像文件的存储 8.7.4 图像数据类型的转换 8.7.5 图像文件格式的转换 -数字图像原理
Platform: | Size: 3072 | Author: 胡羽辰 | Hits:

[matlabRgb2Gray

Description: matlab下将彩色图像装换为灰度图像的一个小程序-a small programm for convert the colour image to gray image using maltlab platform
Platform: | Size: 1024 | Author: gaohua | Hits:

[matlabrgb2gray

Description: 用于将RGB彩色图转化为灰度图的matlab代码!-Gray color map of the matlab code!
Platform: | Size: 1024 | Author: donglijuan | Hits:

[matlabrgb2gray

Description: 此文件为 在matlab中rgb2gray的方式-way of rgb2gray in matlab
Platform: | Size: 1024 | Author: 123o | Hits:

[Special EffectsRGB2GRAY

Description: MATLAB图像处理程序,批量将彩色图片转换成灰色图像,用于其他图像处理程序-MATLAB image processing, batch convert color pictures of the gray image used for other image processing program
Platform: | Size: 4096 | Author: ZHOUZHEN | Hits:

[Other1

Description: matlab使用垂直Sobel算子,自动选择阈值 [VSFAT Threshold]=edge(f, sobel , vertical ) 边缘探测 figure,imshow(f),title( 原始图像 ), 显示原始图像 figure,imshow(VSFAT),title( 垂直图像边缘检测 ) 显示边缘探测图像 使用水平和垂直Sobel算子,自动选择阈值 SFST=edge(f, sobel ,2) figure,imshow(SFST),title( 水平和垂直图像边缘检测 ) 显示边缘探测图像 使用指定45度角 Sobel算子滤波器,指定阈值 s45=[-2 -1 0 -1 0 1 0 1 2] SFST45=imfilter(f,s45, replicate ) SFST45=SFST45>=2 figure,imshow(SFST45),title( 45度角图像边缘检测 ) 显示边缘探测图像 -matlab I=rgb2gray(I0) J0=double(I) [VSFAT Threshold]=edge(f, sobel , vertical ) figure,imshow(f),title figure,imshow(VSFAT),title
Platform: | Size: 1024 | Author: jwi | Hits:

[Special EffectsMATLAB_PICTURE_PROCESSING

Description: 使用MATLAB,实现以下四个功能 一、获取图片RGB值:给定一张图片,获取点(x,y),以及(x,y)周围8个点的R、G、B值。 二、实现rgb2gray函数:使用matlab实现rgb2gray的功能,并能计算出转换后灰度图片的方差。 三、灰度图对比度增强:分别使用灰度拉伸和直方图均衡化,增强给定图的对比度。 四、图像去噪:对给定图片加椒盐噪声,并选择两个去噪算法去除椒盐噪声。 -Using MATLAB, to achieve the following four functions First, access to image RGB value: Given a picture, get the point (x, y), and (x, y) around 8 o clock in the R, G, B values. Second, the realization rgb2gray function: using matlab realize rgb2gray functions, and can calculate the variance after the conversion of grayscale image. Third, the grayscale contrast enhancement: namely, the use of gray stretch and histogram equalization, contrast enhancement given graph. Fourth, the image denoising: for a given image add salt and pepper noise, and you know at least two denoising algorithm to remove salt and pepper noise.
Platform: | Size: 455680 | Author: Jane Ge | Hits:

CodeBus www.codebus.net