-
onvif协议demo
资源描述视频监控协议标准onvif协议,可用于学习。协议源码有两个版本,windows和linux版本,次源码以中间件形式编写,可以直接用编译后的库
- 2022-04-18 05:47:38下载
- 积分:1
-
wince development wince program development
wince 程序开发 -wince development wince program development
- 2022-03-17 13:51:37下载
- 积分:1
-
拟合平面使用 OpenCV
在 VC6.0,我们使用 OpenCV 以适合平面下, 压缩的包包含简单的 project.with 图像,我们可以容纳一架飞机。
- 2022-02-15 09:24:56下载
- 积分:1
-
javaweb 酒店管理系统
javaweb 酒店管理系统
有数据库
- 2022-10-28 22:40:04下载
- 积分:1
-
wince下类似windows xp任务管理器的taskman 。
wince下类似windows xp任务管理器的taskman 。-similar to wince under the windows xp task manager taskman.
- 2022-02-13 21:46:49下载
- 积分:1
-
Mouse events programming examples
Mouse 鼠标事件编程的例子-Mouse events programming examples
- 2023-02-23 01:10:03下载
- 积分:1
-
For a collective in the design of a hassi table names, making the average length...
针对某个集体中的人名设计一个哈西表,使得平均查找长度不超过R,完成相应的建表和查表程序 -For a collective in the design of a hassi table names, making the average length of no more than to find R, the completion of the construction schedule and inventory procedures
- 2023-09-04 17:10:04下载
- 积分:1
-
注册表读写
注册表读写 -registry reader to read and write registry
- 2022-04-19 15:40:04下载
- 积分:1
-
手机分包监控电脑屏幕(带电脑服务器源码)
本源码 是在 手机下可以实时的监控 电脑的屏幕画面 ,电脑服务器是“易语言”的吗,客户源码是“E4A”,简称“易安卓”,服务器数据是分包发送的,不用担心数据掉包问题。
- 2022-01-26 05:29:24下载
- 积分:1
-
QT编写的C++贪吃蛇小游戏
游戏通过按键控制
部分代码:
#include "gamewidget.h"
#define ROW 13
#define COL 16
#define UP 0
#define DOWN 1
#define LEFT 2
#define RIGHT 3
GameWidget::GameWidget(QWidget *parent)
:QWidget(parent)
{
this->setAutoFillBackground(true);//覆盖
this->resize(480,270);
this->setWindowIcon(QIcon("img/icon.jpg"));
this->setWindowTitle("贪吃蛇");
QPalette palette;
palette.setBrush(QPalette::Background,QBrush((QPixmap)"img/bjt.png"));
this->setPalette(palette);
//按扭区
leftbtn=new QPushButton(this);
leftbtn->setIcon((QIcon)"img/zuo.png");
leftbtn->setIconSize(QSize(40,40));
leftbtn->setGeometry(QRect(340,180,40,40));
leftbtn->setFlat(true);
rightbtn=new QPushButton(this);
rightbtn->setIcon((QIcon)"img/you.png");
rightbtn->setIconSize(QSize(40,40));
rightbtn->setGeometry(QRect(430,180,40,40));
rightbtn->setFlat(true
- 2022-03-21 19:09:00下载
- 积分:1