代码搜索结果
找到约 8,819 项符合
RGB 的代码
9-12.m
RGB = imread('flowers.tif');
NTSC = rgb2ntsc(RGB);
subplot(121)
imshow(RGB)
title('原RGB图像')
subplot(122)
imshow(NTSC(:,:,1))
title('变换后的NTSC图像')
9-11.m
RGB = imread('flowers.tif');
HSV = rgb2hsv(RGB);
subplot(121)
imshow(RGB)
title('原RGB图像')
subplot(122)
imshow(HSV)
title('变换后的HSV图像')
%由于色图独立开来,因而没有色图间的影响
bitmap_convert.h
#ifndef BITMAP_CONVERT_H
#define BITMAP_CONVERT_H
void RGB24_to_RGB32(unsigned char *source,unsigned char *convert,int width);
void RGB24_to_RGB565(unsigned char *source,unsigned char *convert,in
bitmap_convert.h
#ifndef BITMAP_CONVERT_H
#define BITMAP_CONVERT_H
void RGB24_to_RGB32(unsigned char *source,unsigned char *convert,int width);
void RGB24_to_RGB565(unsigned char *source,unsigned char *convert,in
fblin8.org
/*
* Copyright (c) 1999, 2000, 2001 Greg Haerr
*
* 8bpp Linear Video Driver for Microwindows
* 00/01/26 added alpha blending with lookup tables (64k total)
*
* Inspired from
qrgb.h
/****************************************************************************
**
** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.
**
** This file is part of the QtGui module of the Qt To
hxcolor.cpp
/* ***** BEGIN LICENSE BLOCK *****
* Source last modified: $Id: hxcolor.cpp,v 1.6.8.1 2004/07/09 02:00:18 hubbe Exp $
*
* Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved
hxcolor.cpp
/* ***** BEGIN LICENSE BLOCK *****
* Source last modified: $Id: hxcolor.cpp,v 1.1.18.1 2004/07/09 02:00:12 hubbe Exp $
*
* Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserve
fblin8.c
/*
* Copyright (c) 1999, 2000, 2001 Greg Haerr
*
* 8bpp Linear Video Driver for Microwindows
* 00/01/26 added alpha blending with lookup tables (64k total)
*
* Inspired from
fbquasar.c
/*
* Copyright (c) 1999, 2000, 2001 Greg Haerr
*
* 8bpp Linear Video Driver for Microwindows
* 00/01/26 added alpha blending with lookup tables (64k total)
*
* Inspired from