代码搜索结果
找到约 8,819 项符合
RGB 的代码
invertfilter.java
// InvertFilter.java
// InvertFilter is an ImageFilter that inverts a
// BufferedImage's RGB color values.
package com.deitel.advjhtp1.java2d;
// Java core packages
import java.awt.image.*;
yuv.txt
RGB to YUV Conversion
Y = (0.257 * R) + (0.504 * G) + (0.098 * B) + 16
Cr = V = (0.439 * R) - (0.368 * G) - (0.071 * B) + 128
Cb = U = -(0.148 * R) - (0.291 * G) + (0.439 * B) + 128
rgbtohtml.java
//RGB转换为html颜色
package myQQ;
import java.awt.*;
class RGBtoHtml
{
static String[] hexarray = new String[256];
public static void buildArray()
{
hexarray[0]="00"; hexarray[1]="01";
ipcomp.h
/*
* IPCOMP zlib interface code.
* Copyright (C) 2000 Svenning Soerensen
* Copyright (C) 2000, 2001 Richard Guy Briggs
*
* This program is
ipcomp.c
/*
* IPCOMP zlib interface code.
* Copyright (C) 2000 Svenning Soerensen
* Copyright (C) 2000, 2001 Richard Guy Briggs
*
* This program is
vga_controller.v
module VGA_Controller( // Host Side
iCursor_RGB_EN,
iCursor_X,
iCursor_Y,
iCursor_R,
iCursor_G,
iCursor_B,
iRed,
iGreen,
iBlue,
oA
vga_controller.v
module VGA_Controller( // Host Side
iCursor_RGB_EN,
iCursor_X,
iCursor_Y,
iCursor_R,
iCursor_G,
iCursor_B,
iRed,
iGreen,
iBlue,
oA
vga_controller.v
module VGA_Controller( // Host Side
iCursor_RGB_EN,
iCursor_X,
iCursor_Y,
iCursor_R,
iCursor_G,
iCursor_B,
iRed,
iGreen,
iBlue,
oA
vga_controller.v
module VGA_Controller( // Host Side
iCursor_RGB_EN,
iCursor_X,
iCursor_Y,
iCursor_R,
iCursor_G,
iCursor_B,
iRed,
iGreen,
iBlue,
oA
bright.html
Brightening or Darkening an RGB Buffered Image
(Java Developers Almanac Example)