代码搜索:RGB

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

代码结果 8,819
www.eeworm.com/read/102363/15785463

css color0.css

a:link { color: rgb(153,51,0); } a:visited { color: rgb(102,102,0); } a:active { color: rgb(204,51,0); } body { color: rgb(0,0,0); background-color: rgb(255,255,255); } h1 { c
www.eeworm.com/read/100915/15861417

h stdafx.h

// stdafx.h : include file for standard system include files, // or project specific include files that are used frequently, but // are changed infrequently // #if !defined(AFX_STDAFX_H__E
www.eeworm.com/read/155277/5627269

as colorutil.as

function RGB2Obj(rgb) { var r = (rgb & 0x00ff0000) >>> 16; var g = (rgb & 0x0000ff00) >>> 8; var b = (rgb & 0x000000ff); return { r:r, g:g, b:b }; } function Obj2RGB(obj) { var rgb = (obj.r
www.eeworm.com/read/36958/1064855

m ch9_5_1.m

x = bwlabel(BW, 4); RGB = label2rgb(x, @jet, 'k'); imshow(RGB+1, 'notruesize')
www.eeworm.com/read/186878/8898338

m test4.m

RGB = imread('smhouse.ppm'); sz = size(RGB); HSV = rgb2luv(RGB); H=HSV(:,:,1); S=HSV(:,:,2); V=HSV(:,:,3); figure, imshow(RGB); figure; imshow(H,[]); figure, imshow(S,[]); figure, imshow(V,[]
www.eeworm.com/read/441743/1768549

java ixmlcolorconstants.java

package com.jixy.sample.plugin.editors; import org.eclipse.swt.graphics.RGB; public interface IXMLColorConstants { RGB XML_COMMENT = new RGB(128, 0, 0); RGB PROC_INSTR = new RGB(128, 128, 128); R
www.eeworm.com/read/378175/2689741

m example5_3.m

%顶点坐标为(40 , 50) , (40 , 250),(240,50)和(240,250)。 RGB=imread('flowers.tif'); imshow(RGB); RGB2=imcrop(RGB,[40,50,200,200]); figure,imshow(RGB2);
www.eeworm.com/read/367675/2832685

m example5_3.m

%顶点坐标为(40 , 50) , (40 , 250),(240,50)和(240,250)。 RGB=imread('flowers.tif'); imshow(RGB); RGB2=imcrop(RGB,[40,50,200,200]); figure,imshow(RGB2);
www.eeworm.com/read/447044/7559924

css_completeexample listing12-23_polish.css_completeexample

/* this is a complete example for a polish.css file */ colors { bgColor: rgb( 132,143,96 ); highlightedBgColor: rgb( 238,241,229 ); highlightedFontColor: rgb( 238,241,229 ); fontColor: rgb(
www.eeworm.com/read/438574/7729726

m bp-compress.m

%3月19日 clc; clear; close all; %I=imread('lena1.jpg'); rgb=imread('mandrill.jpg'); rgb=im2double(rgb); r=rgb(:,:,1);%取值在[0,1]之间 g=rgb(:,:,2); b=rgb(:,:,3); %I=imresize(I,[128,128]); P=[];