-
jiaoc
一个初级程序文档,按照这个做,你很快就能摆脱菜鸟哦(A primary program documentation, according to this so quickly you can get rid of rookie Oh)
- 2010-06-09 23:06:11下载
- 积分:1
-
Ring3
类似PChunter的内核工具。本工具是应用层的源码。适合内核新手(Similar PChunter core tools. This tool is the source application layer. Suitable for novice kernel)
- 2014-05-14 23:57:42下载
- 积分:1
-
Calculator
说明: 一个复杂的智能计算器,可以实现智能计算,以及优先级判断(A complex smart calculator, you can achieve intelligent computing, as well as to determine priority)
- 2010-03-25 12:05:50下载
- 积分:1
-
cv_Camera_cablication
主要功能是实现相机标定,以及实现反投误差,实现特征点的提前。(The main function is to achieve camera calibration and error to achieve the anti-investment, to achieve the feature points in advance.)
- 2014-01-07 15:06:33下载
- 积分:1
-
transfer
说明: 各种数码之间的相互转换,比如2进制转10进制(Base Conversion Algorithm)
- 2010-03-19 10:55:40下载
- 积分:1
-
(c)_ctrl2cap_vxd
Ctrl2cap Keyboard Filter
Example keyboard filter driver for NT4 and Win2K
- 2014-11-12 02:22:26下载
- 积分:1
-
3.3
测试对话框布局效果,运行程序后看到相应效果(Test Dialog layout effects, see the corresponding results after running the program)
- 2013-08-23 15:41:12下载
- 积分:1
-
adhoc-network
对学习AD HOC网络很有帮助的一些电子文档,可以了解此网络的基本原理和一些协议之间的比较,以及改进。大家看看肯定会有所帮助哦(The study of electronic document helpful AD HOC network)
- 2012-03-10 20:31:57下载
- 积分:1
-
caibei
非常经典的C++程序,十分实用对于练习程序来说。(good programme)
- 2013-09-14 21:23:56下载
- 积分: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