代码搜索结果

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

graydicon.java

package jp.gr.java_conf.tame.swing.icon; import java.awt.*; import java.awt.image.*; import javax.swing.*; /** * @version 1.0 04/30/99 */ public class GraydIcon implements Icon { Icon icon;

graydicon.java

package jp.gr.java_conf.tame.swing.icon; import java.awt.*; import java.awt.image.*; import javax.swing.*; /** * @version 1.0 04/30/99 */ public class GraydIcon implements Icon { Icon icon;

务必阅读.txt

============== 屏幕颜色拾取器 ============== 欢迎您使用免费软件《屏幕颜色拾取器》,这个软件能将您从屏幕上看到的颜色 转换为可以使用的数据颜色类型(网页颜色和<mark>RGB</mark>颜色),供您编程或者做网页使 用。 本软件是免费软件,您可以任意的散播、使用,但请保留本软件的完整性,谢谢。 我们的主页:http://www.chuanhua.net(传华电脑工 ...

pal.cpp

//--------------------------------------------------------------------------- #include #pragma hdrstop #include #include "Pal.h" #include "rom.h" //--------------------------

example4_9.m

RGB1=imread('pic005.jpg'); RGB2=imread('pic007.jpg'); I1=imread('rice.tif'); I2=imread('testpat1.tif'); subplot(2,2,1); %将图形窗口等分成4部分 subimage([0,500],[0,500],RGB1); subplot(2,2,2); subimage([

lichaodlg.cpp

// lichaoDlg.cpp : implementation file // #include "stdafx.h" #include "lichao.h" #include "lichaoDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FI

829text8.htm

function morph(e,wait,steps,style,done){ if(e.morphing){ return; } e.morphing = true; e.step = 0; e.done = steps; e.wait = wait; e.morphDone = done; // initialize th

camera_ov6x30.c

/* * camera_ov6x30.c * * Implementation of Camera for OmniVision OV6630 digital camera. * * Copyright (C) 2003-2004 MontaVista Software, Inc. * * Author: MontaVista Software, Inc. *

sample.ico

# # Example icon file # screen width 640 screen height 480 screen colors 16 screen background 0 screen map rgb 0 0 0 is . # Black rgb 0 0 170 is 1 # Blue rgb 0 170 0 is 2 # Green rg

彩色canny.m

RGB=imread('flowers.tif'); isrgb(RGB); figure(1),imshow(RGB); I=rgb2gray(RGB);%彩色变灰度 figure(2),imshow(I); BW=edge(I,'canny');%提边 figure(3),imshow(BW); out=RGB; out(BW) =255;%两图融合 figure, imsh