-
chenggongchengxu
rgb to HSV,很有用,调试成功,可以应用(rgb to HSV,#include "stdafx.h"
#include <iostream.h>
void main(float R, float G, float B, float& H, float& S, float&V)
{
// r,g,b values are from 0 to 1
// h = [0,360], s = [0,1], v = [0,1]
// if s == 0, then h =-1 (undefined)
float min, max, delta,tmp
tmp = R>G?G:R
min = tmp>B?B:tmp
tmp = R>G?R:G
max = tmp>B?tmp:B
V = max // v
delta = max- min
if( max != 0 )
S = delta/max // s
else
{
// r = g = b = 0 // s = 0, v is undefined
S = 0
H = 0
return
}
if (delta == 0){
H = 0
return
}
else if(R == max){
if (G >= B)
H = (G- B)/delta // between yellow & magenta
else
H = (G- B)/delta+ 6
}
else if( G == max )
H = 2+ ( B- R )/delta // between cyan & yellow
else if (B == ma)
- 2011-12-02 10:09:24下载
- 积分:1
-
海浪模拟
基于matlab仿真所建立的二维海浪模型,希望可以帮助到大家(Two dimensional sea wave model)
- 2018-02-10 10:13:24下载
- 积分:1
-
基于51单片机的串行通信实验【仿真电路图+程序,(C语言+汇编)】
基于51单片机的串行通信实验【仿真电路图+程序,(C语言+汇编)】
- 2021-05-06下载
- 积分:1
-
ribbondemo_src
Ribbon frome codeproject
- 2015-03-11 18:07:14下载
- 积分:1
-
a look
一个用查表法实现的根据汉字串生成拼音码的程序,我看过网上很多这种代码,但其实都有问题,对于码表后面的汉字就不能正确处理-a look-up table method is based on the Chinese character string alphabet code generation process, I have read many such online code But there are problems, for the code table on the back of Chinese characters can not correctly handle
- 2022-07-23 12:48:40下载
- 积分:1
-
7canshu
说明: 利用4个公共点解WGS84转北京54的7参数(The use of public four-point solution to WGS84 parameters Beijing 54 7)
- 2008-11-18 12:59:44下载
- 积分:1
-
XISE WBMS管理V13.0版本
XISE WBMS管理V13.0版本
XISEWBMS菜刀官方网站(Xise WBMS31649
The official website of XISEWBMS kitchen knife)
- 2020-06-22 08:20:01下载
- 积分:1
-
shuzidianzizhong
数字电子钟,单片机控制,可以设置时间,并且进行时钟计时(Digital electronic clock, microprocessor control, you can set the time and the clock time)
- 2010-05-22 19:19:02下载
- 积分:1
-
9255883
介绍VC基本功能应用,以及如何操作VC界面的基本按钮()
- 2018-02-22 21:54:24下载
- 积分:1
-
adv7179
说明: Hi3519V101 adv7179 HDMI 驱动(Hi3519V101 adv7179 HDMI driver)
- 2020-06-19 21:40:02下载
- 积分:1