代码搜索结果

找到约 8,819 项符合 RGB 的代码

rgb2hsv.m

%RGB2HSV Dataset overload % % B = RGB2HSV(A)

ycbcr2rgb.v

// -------------------------------------------------------------------- // Copyright (c) 2005 by Terasic Technologies Inc. // -------------------------------------------------------------------- /

yuv2rgb.c

/************************************************************************ * * yuv2rgb.c, colour space conversion for tmndecode (H.263 decoder) * Copyright (C) 1995, 1996 Telenor R&D, Norway

gray2rgb.m

function [out] = gray2rgb(I) % % |----------------------------------------------------------| % | Hybrid Texture Synthesis MATLAB package | % |

yuv2rgb.c

#include "config.h" #include "tmndec.h" #include "global.h" #ifdef DISPLAY #include #include #include #include #include #endif #ifdef DISP

rgb2yuv.m

function [Y,U,V] = RGB2YUV(translation_image) R=translation_image(:,:,1); G=translation_image(:,:,2); B=translation_image(:,:,3); Y=0.299*R+0.587*G+0.114*B; U=0.492*(B-Y); V=0.877*(R-Y);

video_rgb_org.c

/* * Copyright 2003 by Texas Instruments Incorporated. * All rights reserved. Property of Texas Instruments Incorporated. * Restricted rights to use, duplicate or disclose this code are *

raw2rgb.v

module RAW2RGB( oRed, oGreen, oBlue, oDVAL, iX_Cont, iY_Cont, iDATA, iDVAL, iCLK, iRST ); input [10:0] iX_Cont; input [10:0] iY_Cont; input [9:0] iDAT