-
class_FALSH_SST
SST FALSH的读写(SPI模拟总线)(长期运行)()
- 2008-04-07 14:03:34下载
- 积分:1
-
capture
本程序是STM32系列单片机的输入捕获功能的实现,可以完成对边沿的检测,并且能通过串口将捕获的数据发送到电脑上位机上(This program is a STM32 MCU input capture function, you can complete the detection of the edge, and through the serial port to send the captured data to a computer PC)
- 2021-04-23 15:18:47下载
- 积分:1
-
LanBasic
Ethernet Test with stm32f373
- 2017-11-28 12:17:58下载
- 积分:1
-
VC6ADOACCESS
说明: VC++使用ADO开发ACCESS数据库,可以进行增删,改,查询等对数据库的管理(VC++ using ADO database development ACCESS, additions and deletions can be changed, the database query, such as the management of)
- 2009-08-22 09:47:56下载
- 积分:1
-
postprocess
Post process with irrlicht Engine
- 2011-10-08 00:15:59下载
- 积分:1
-
simple
实现对直流电机的PID控制,其中包含直流电机的动力学模型,控制律的设计方法(DC motor PID control, which contains a dynamic model of the DC motor control law design method)
- 2012-09-20 15:48:42下载
- 积分:1
-
7771535
用c编写的速度一般的ldpc译码程序,程序质量高,已验证推荐(The ldpc decoding program written with c is of high quality and has been verified and recommended)
- 2018-07-28 19:52:35下载
- 积分:1
-
基于单片机的智能电子琴设计
说明: 很好的高级例子,stc89c52 可以下载用keil学习(Good advanced example, STC89C52 can be downloaded to learn with Keil)
- 2020-06-27 21:51:49下载
- 积分:1
-
7290
说明: 7290显示 7290显示 7290显示(7290 show revealed 7,290 7,290 7,290 showed 7290 show revealed)
- 2006-02-27 16:11:54下载
- 积分: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