代码搜索结果

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

xil_ycrcb2rgb.vhd

--******************************************************************* -- Copyright(C) 2005 by Xilinx, Inc. All rights reserved. -- This text/file contains proprietary, confidential -- information of

double_ycrcb2rgb.m

function [matlab_r, matlab_g, matlab_b] = double_ycrcb2rgb(Y,CR,CB) % double precision YCrCb to RGB color-space conversion. % Coefficients derived from RGB to YCrCb conversion matrix %

double_rgb2ycrcb.m

function [matlab_y, matlab_cr, matlab_cb] = double_rgb2ycrcb(R,G,B) % double precision YCrCb to RGB color-space conversion. % Coefficients derived from RGB to YCrCb conversion matrix %

rom_color_gen_rgb.v

module rom_color_gen_RGB( in, R_out, G_out, B_out ); input [3:0] in; output [7:0] R_out; output [7:0] G_out; output [7:0] B_out; reg [7:0] R_out,G_out,B_out; always @ (in) case(in) 'b0101:

cconv_yuv2rgb.h

/*! *************************************************************************** * \file * cconv_yuv2rgb.h * * \author * Woo-Shik Kim * * \date * 29 May 2008 * * \brief

cconv_yuv2rgb.c

/*! ************************************************************************************* * \file img_distortion.c * * \brief * YUV to RGB color conversion * * \author * Main c

ycrcb2rgb.rc2

// // YCRCB2RGB.RC2 - resources Microsoft Visual C++ does not edit directly // #ifdef APSTUDIO_INVOKED #error this file is not editable by Microsoft Visual C++ #endif //APSTUDIO_INVOKED /

从rgb中获得颜色.txt

int Red=(int)SelfPlaceKey.GetValue("Red"); int Green=(int)SelfPlaceKey.GetValue("Green"); int Blue=(int)SelfPlaceKey.GetValue("Blue"); BackColor=Color.FromArgb(Red,Green,Blue);