Description: 数字图像处理中关于色彩空间变换的实现,色彩空间包括:YUV,YCbCr,Iab,RGB,XYZ等等。-Digital Image Processing for color space conversion in the color space include : YUV, YCbCr, Iab, RGB, XYZ and so on. Platform: |
Size: 254976 |
Author:王青海 |
Hits:
Description: Convert a color image between color representations.
B = COLORSPACE(S,A) converts the color representation of image A
where S is a string specifying the conversion. S tells the
source and destination color spaces, S = dest<-src , or
alternatively, S = src->dest . Supported color spaces are
RGB R G B Red Green Blue (ITU-R BT.709 gamma-corrected)
YPbPr Luma (ITU-R BT.601) + Chroma
YCbCr / YCC Luma + Chroma ("digitized" version of Y PbPr)
YUV NTSC PAL Y UV Luma + Chroma
YIQ NTSC Y IQ Luma + Chroma
YDbDr SECAM Y DbDr Luma + Chroma
JPEGYCbCr JPEG-Y CbCr Luma + Chroma
HSV / HSB Hue Saturation Value/Brightness
HSL / HLS / HSI Hue Saturation Luminance/Intensity
XYZ CIE XYZ
Lab CIE L*a*b* (CIELAB)
Luv CIE L*u*v* (CIELUV)
Lch CIE L*ch (CIELCH)-Convert a color image between color representations. B = COLORSPACE (S, A) converts the color representation of image A where S is a string specifying the conversion. S tells the source and destination color spaces, S = ' dest <-src' , or alternatively, S = ' src-> dest' . Supported color spaces are ' RGB' R' G' B ' Red Green Blue (ITU-R BT.709 gamma-corrected)' YPbPr ' Luma (ITU-R BT.601 )+ Chroma ' YCbCr' /' YCC' Luma+ Chroma ( " digitized" version of Y' PbPr) ' YUV' NTSC PAL Y' UV Luma+ Chroma ' YIQ' NTSC Y' IQ Luma+ Chroma ' YDbDr' SECAM Y ' DbDr Luma+ Chroma ' JPEGYCbCr' JPEG-Y' CbCr Luma+ Chroma ' HSV' /' HSB' Hue Saturation Value/Brightness' HSL ' /' HLS ' /' HSI ' Hue Saturation Luminance/Intensity' XYZ ' CIE XYZ' Lab ' CIE L* a* b* (CIELAB)' Luv ' CIE L* u* v* (CIELUV)' Lch ' CIE L* ch (CIE Platform: |
Size: 4096 |
Author:张灯结 |
Hits:
Description: 本实验要求编写程序实现课本图6.23伪彩色图像处理能力框图,实现灰度级到彩色的转换,程序的输入为图像中指定的两个灰度级范围,程序的输出为RGB格式图像,其中一个灰度级范围显示为指定的彩色,其余的像素以RGB形式显示为与对应输入图像像素相同的灰度色-Prepared at the request of the experimental procedures to achieve pseudo-textbook Figure 6.23 Block diagram of color image processing capabilities to achieve gray-scale to color conversion, image input process as specified in the scope of the two gray-scale, the program output for the RGB format images, one of which range of gray-scale display for the specified color, and the rest of the pixels in RGB and the corresponding form for the same input image pixel gray-scale color Platform: |
Size: 305152 |
Author:jhm |
Hits:
Description: MATLAB实现gray到RGB的转化,包括图像文件及M文件-MATLAB realization of gray to RGB conversion, including image files and M files Platform: |
Size: 74752 |
Author:贾佳 |
Hits:
Description: 在matlab的开发环境中,对图像进行RGB到RLab的转换-The development environment in matlab for image conversion of RGB to RLab Platform: |
Size: 2048 |
Author:沈清 |
Hits:
Description: The File Contains 5 Other Source Codes include, bandpass Butterworth Filter, Gabor Bank, RGB to HLS Conversion, Image Filtering in Frequency Domain and Hough transform.
I hope that s enough to make me a member.
Regards.
Zizi. Platform: |
Size: 2048 |
Author:zizi |
Hits:
Description: 有效的肤色分割程序,将RGB颜色空间转化到YCbCr空间,有效处理了光照 通过形态学处理完善了图片肤色分割的圆滑程度-Skin color segmentation and effective procedure to RGB color space conversion to the YCbCr space to deal effectively with the light through the morphological processing and improved color image segmentation smooth level Platform: |
Size: 1024 |
Author:jack |
Hits:
Description: 本程序在matlab中实现了灰度图像转换为RGB图像的过程,简单易于理解,有注释-This procedure in matlab to realize the gray image conversion for RGB image process, simple easy to understand, a comment
Platform: |
Size: 88064 |
Author:mamin |
Hits:
Description: 利用matlab编写函数实现RGB到XYZ空间的转换并利用这个函数对给定的图像进行处理,仿真手机屏上显示标准图片。在图像处理过程中考虑Gamma特性。-Matlab write the function RGB to XYZ space conversion and use of this function on a given image processing, simulation on the cell phone screen displays the standard picture. Gamma characteristic is considered in the image processing procedure. Platform: |
Size: 919552 |
Author:攀龙 |
Hits:
Description: Lab2RGB takes L, a, and b double matrices, or an M x N x 3 double
image, and returns an image in the RGB color space. Values for L are in
the range [0,100] while a* and b* are roughly in the range [-110,110].
If 3 outputs are specified, the values will be returned as doubles in the
range [0,1], otherwise the values will be uint8s in the range [0,255].
This transform is based on ITU-R Recommendation BT.709 using the D65
white point reference. The error in transforming RGB -> Lab -> RGB is
approximately 10^-5.
See also RGB2LAB.
By Mark Ruzon from C code by Yossi Rubner, 23 September 1997.
Updated for MATLAB 5 28 January 1998.
Fixed a bug in conversion back to uint8 9 September 1999.
Updated for MATLAB 7 30 March 2009.-Lab2RGB takes L, a, and b double matrices, or an M x N x 3 double
image, and returns an image in the RGB color space. Values for L are in
the range [0,100] while a* and b* are roughly in the range [-110,110].
If 3 outputs are specified, the values will be returned as doubles in the
range [0,1], otherwise the values will be uint8s in the range [0,255].
This transform is based on ITU-R Recommendation BT.709 using the D65
white point reference. The error in transforming RGB -> Lab -> RGB is
approximately 10^-5.
See also RGB2LAB.
By Mark Ruzon from C code by Yossi Rubner, 23 September 1997.
Updated for MATLAB 5 28 January 1998.
Fixed a bug in conversion back to uint8 9 September 1999.
Updated for MATLAB 7 30 March 2009. Platform: |
Size: 1024 |
Author:tertul |
Hits:
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:
Description: 通过对RGB到LAB颜色空间的转换,从而实现对图像显著性检测。(Through the RGB to LAB color space conversion, in order to achieve the image saliency detection.) Platform: |
Size: 512000 |
Author:zleoy
|
Hits: