-
OPENGL
说明: 提供完整的opengl项目方案, 通过这个项目的学习,能够了解到opengl的真个运行过程(3D OPENGL A WHOLE PROJECT FOR LEARNER TO BEGIN WEITH. OPENGL A VERY POPULAR)
- 2010-04-24 20:41:04下载
- 积分:1
-
ChuanKouTest
c#下利用串口实现数据实时采集以及绘图试验(c# under the use of serial test data collection and mapping)
- 2011-07-14 12:03:30下载
- 积分:1
-
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
-
six2
6子祺人人对战游戏,简单的控制台程序,电脑判别胜负。(6 sub-Kee all Battle games, simple console program, the computer determine the outcome.)
- 2014-05-11 16:30:55下载
- 积分:1
-
smpplib
一个短信smpp协议开发包源码,带COM控件(SMS SMPP protocol development of a source package with COM controls)
- 2020-06-26 11:20:01下载
- 积分:1
-
Bayes++
BAYESIAN FILTERING: including KF, EKF, Unscented EKF, Particle Filter & etc
- 2010-12-02 22:53:47下载
- 积分:1
-
halcon多张车牌识别
halcon多张车牌识别
- 2020-02-29下载
- 积分:1
-
414viterbi
说明: 2. 该程序可以将随机生成的0,1序列经过卷积编码器产生(4,1,4)卷积码,然后将卷积码经过4*8的删余矩阵,有三种速率(1/3,2/3,1/2)可供选择,
3. 在编码端利用维特比译码方法进行译码
(viterbi)
- 2009-08-23 15:12:55下载
- 积分:1
-
matlab
matlab编程常用命令集,编程命令的使用方法及命令的快速查找(matlab programming of commonly used command sets, the use of the programming commands and orders quickly find)
- 2012-06-14 09:10:44下载
- 积分:1
-
matlab
三次样条插值matlab程序(含多种边界条件)(matlab )
- 2011-10-15 11:09:59下载
- 积分:1