-
VC++视频传输
说明: 里面包含视频捕捉系统,视频监控系统等。
有十多个系统。VC++编写。( Inside contains the video frequency capture system, the video
frequency supervisory system and so on. Some more than 10 systems. VC
compilation. )
- 2005-09-26 17:40:32下载
- 积分:1
-
Bezier
实现贝塞尔曲线的编程,即人为指定N个点,程序自动生成这N个点的贝塞尔曲线。(Programming Bezier curve, namely human specified N points, the program automatically generates N points Bezier curve.)
- 2013-03-24 10:31:51下载
- 积分:1
-
《C语言精彩编程百例》源代码
说明: 《C语言精彩编程百例》源代码,压缩包有一些c语言编程的例子(The source code of "100 wonderful programming cases of C language". There are some examples of C language programming in the compressed package)
- 2020-02-05 11:51:00下载
- 积分: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
-
Inlet_profile_
说明: For the model of indoor air distribution tuyere proposed by Professor Zhang Tengfei, this paper is UDF code for fluent simulation.
- 2020-06-25 09:00:01下载
- 积分:1
-
ViBe背景检测算法、前景检测、运动检测
对源代码做了少量修改,源代码来源忘记了;
代码为ViBe背景检测算法,也可用来做前景检测或者运动检测相关的内容;
检测效果较好,可通过参数进行调节 样本更新率等。
- 2022-01-22 08:38:17下载
- 积分:1
-
QQ美女找茬 CQQFind
QQ美女找茬 作弊器
在windows XP下测试通过。(QQ beauty finding fault cheating device)
- 2020-06-26 00:40:02下载
- 积分:1
-
UltimateToolBox93
UltimateToolBox93代码、文档、例子(UltimateToolBox93)
- 2009-03-22 12:58:29下载
- 积分:1
-
Gidaspow
fluent 多相流模型中的Gidaspow曳力模型,采用udf 编写。可以再fluent 中进行编译(Gidaspow drag law for multiphase flow in fluent in UDF scheme.
)
- 2021-04-24 19:58:46下载
- 积分:1
-
Motor
基于zigbee的电机的调试代码,需要用IAR打开。(Based on the zigbee motor debugging code, need to use IAR to open.)
- 2013-08-20 10:19:00下载
- 积分:1