-
-
-
-
-
[
Others]
colorspace.rar
Mainly on the color space to describe some of the knowledge. RGB, HSI, LAB, YUV, HSV, LUV, etc.
-
[
VHDL]
colorspaceconversion.rar
For video compression coding of the RGB signal to the color difference signal transform VHDL procedures, very useful
-
-
-
[
Matlab]
ColorSegmentation.rar
Colour Segmentation- VIBGYOR Colour Segmentation.This function can be used for VIBGYOR Colour segmentation from the RGB Color images.Posted date : 14- 07- 2008
Developed By : K.Kannan & Jeny Rajan
-
[
Others]
d.rar
HSI image and rgb image conversion as well as rgb and HSI conversion process between.
-
[
C/C++]
jpg_function.rar
// RGB-> YCbCr
// Y = Coef. for red*Red+Coef. for green*Green+Coef. for blue*Blue
// Cb = (Blue-Y)/(2-2*Coef. for blue)
// Cr = (Red-Y)/(2-2*Coef. for red)
// YCbCr-> RGB
// Red = Cr*(2-2*Coef. for red)+Y
// Green = (Y-Coef. for blue* ...