-
use_ISP_on_PC
VC++串口通讯程序
大家可以看看,错误之处欢迎指出,这时本人花不少时间搞出来的啊(VC serial communication process we can see, the mistake welcome, Then I spend a lot of time in the ah)
- 2006-11-22 15:11:50下载
- 积分:1
-
MyGPS
1>实现可以随意浏览任一景点的介绍。(功能一)
2>可以给出任意两个景点的最短距离及其路线。(功能二)
3>可以查看任一景点热度,并可以对对所有景点热度(访问次数)进行排序。(功能三)
4>每个景点相关内容从文件读取,实现对文件操作的练习。
(1> implementations can feel free to browse introduce 任一景 points. (Function a)
2> You can give the shortest distance and route between any two attractions. (Function b)
3> You can view Renyi Jing point heat, and heat can all attractions (visits) to be sorted. (Function c)
4> each spot related content file reading, to achieve the file operations exercises.)
- 2015-11-12 22:16:01下载
- 积分:1
-
svmtrain
支持向量机点点滴滴matlab版,内容不错较为新颖 有很强的实用价值(More novel support vector machine bit by bit matlab version has a strong practical value)
- 2012-10-20 10:13:29下载
- 积分:1
-
TestLocalHeap
Windows Local heap class
- 2014-11-30 22:26:27下载
- 积分:1
-
ManageRest
食堂管理系统(MFC),有界面,可以访问ACCESS的数据库!(canteen management system (MFC), the interface can access the database ACCESS!)
- 2007-05-07 16:01:10下载
- 积分:1
-
ChartCtrlDemoSource
基于MFC的chart ctrol,具有很强的用户接口功能。(An MFC Chart Control with Enhanced User Interface
)
- 2012-02-28 15:56:46下载
- 积分:1
-
MedianFilterSmooth
图形图像处理中的平滑处理,可以实现部分的功能,但是还可以继续完善(Graphic image processing smoothing, can achieve some of the functions, but can also continue to improve)
- 2008-06-25 00:14:41下载
- 积分:1
-
ShortCut
创建桌面快捷方式和活动桌面,功能强大,可以实现快捷方式和活动桌面。(Create a desktop shortcut and Active Desktop, powerful, can achieve the desktop shortcuts and activities.)
- 2013-08-12 11:08:06下载
- 积分: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
-
dhxg
vc窗体的动画效果的程序源码,很不错的demo(vc form animation program source code, very good demo)
- 2011-06-28 06:49:11下载
- 积分:1