代码搜索结果
找到约 5,749 项符合
RGB 的代码
def.h
#pragma once
const COLORREF crWhite = RGB( 0xff, 0xff, 0xff ); //白色
const COLORREF crBlack = RGB( 0x00, 0x00, 0x00 ); //黑色
const COLORREF crRed = RGB( 0xff, 0x00, 0x00 ); //红色
const COLORR
f11_1.m
%原始索引图像
load trees
%转换为灰度图像
I = ind2gray(X,map);
figure(1)
subplot(2,2,1);
imshow(X,map)
title('索引图像');
subplot(2,2,2);
imshow(I)
title('转换后的灰度图像');
%原始真彩图像
RGB = imread('peppers.png')
imageutil.h
#include "IEDib.h"
#include "IEFloatImage.h"
void ImageDiffusionFloat(IEFloatImage* pImage, float lambda, float k, int iteration);
void RGBToLUV(unsigned char *RGB,float *LUV,int size);
void
imageutil.h
#include "IEDib.h"
#include "IEFloatImage.h"
void ImageDiffusionFloat(IEFloatImage* pImage, float lambda, float k, int iteration);
void RGBToLUV(unsigned char *RGB,float *LUV,int size);
void
rgb2rgb.h
/*
* rgb2rgb.h, Software RGB to RGB convertor
* pluralize by Software PAL8 to RGB convertor
* Software YUV to YUV convertor
* Software YUV to RGB convertor
* Writte
f11_1.m
%原始索引图像
load trees
%转换为灰度图像
I = ind2gray(X,map);
figure(1)
subplot(2,2,1);
imshow(X,map)
title('索引图像');
subplot(2,2,2);
imshow(I)
title('转换后的灰度图像');
%原始真彩图像
RGB = imread('peppers.png')
14i.cpp
#include
// colors() Separate a 16-bit RGB pixel into individual colors
// IN: pixel is a 16-bit RGB value
// OUT: red, green, and blue are returned as individual color values
void c
chartdata.cpp
#include "stdafx.h"
#include "chartdata.h"
struct TCHARTCOLOR
{
int id;
COLORREF color;
};
struct TCHARTCOLOR InnerColors[] = {
{CHARTCOLOR_RED , RGB(255, 0,
务必阅读.txt
==============
屏幕颜色拾取器
==============
欢迎您使用免费软件《屏幕颜色拾取器》,这个软件能将您从屏幕上看到的颜色
转换为可以使用的数据颜色类型(网页颜色和<mark>RGB</mark>颜色),供您编程或者做网页使
用。
本软件是免费软件,您可以任意的散播、使用,但请保留本软件的完整性,谢谢。
我们的主页:http://www.chuanhua.net(传华电脑工 ...
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);