代码搜索结果
找到约 5,749 项符合
RGB 的代码
color me less.cpp
#include
#include
#include
#include
using namespace std;
struct RGB
{
int red;
int green;
int blue;
};
#ifdef DEBUG
int compare_red(const void
findenergy.m
function Emean=findEnergy(x)
% FINDENERGY creates an gradient img from a given RGB or grayscale image.
% The vertical and horizontal gradients are found using a Sobel operator
% and the gradient ma
hang.m
RGB=imread('000000.jpg');%读图
for k=1:10
I= double(rgb2gray(RGB));
h = fspecial('sobel');
gx=imfilter(I,h,'replicate');
gy=imfilter(I,h,'replicate');
eI=abs(gx)+abs(
rgb.txt
! $Xorg: rgb.txt,v 1.3 2000/08/17 19:54:00 cpqbld Exp $
255 250 250 snow
248 248 255 ghost white
248 248 255 GhostWhite
245 245 245 white smoke
245 245 245 WhiteSmoke
220 220 220 gainsboro
255 2
hslutils.pas
//------------------------------------------------------------------------------
//
// HSL - RGB colour model conversions
//
// These four functions can be used to convert between the RGB and HSL
calculator.lua
-- Scrollbar
BaseScrollbar = {
Properties = {
scrollfillcolor = Color.rgbp(255, 255, 255, 50);
scrollhandlecolor = Color.rgb(102, 102, 102);
scrollcolor = Color.none;
hslutils.pas
//------------------------------------------------------------------------------
//
// HSL - RGB colour model conversions
//
// These four functions can be used to convert between the RGB and HSL
webfxlayout.local.css
/*
bright: rgb(234,242,255);
normal: rgb(120,172,255);
dark: rgb(0,66,174);
*/
/* import menu css */
@import "dhtml/xmenu/xmenu.css";
#webfx-about {
position: absolute;
backgroun
texttool.h
#ifndef __TEXTTOOL
#define __TEXTTOOL
#define TEXT_BOTTOM_RIGHT 0
#define TEXT_BOTTOM_CENTER 1
#define TEXT_CENTER 2
#define TEXT_USER 3
#define TC_BLACK RGB(0,0,0)
#define TC_BLUE RGB(0,0,
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);