-
videotrackframe
视频采集,视频处理,视频跟踪,对视频监控很有帮助(Video capture, video processing, video tracking, video surveillance helpful)
- 2010-05-11 10:16:55下载
- 积分:1
-
MDI程序编辑器 Visual-MFC-editor
一个基于MFC的多文档(MDI)程序编辑器的雏形框架,具有窗口分割、系统文件目录树形对话框、标签页view、代码编辑保存、语法高亮显示及查找、设置书签等系列基本功能,可以任意进行二次开发。(An MFC-based multi-document (MDI) program editor prototype frame having a separate window, the system file directory tree dialog tab view, code editing and saving, syntax highlighting and find, set bookmarks, and other basic functions, can be arbitrarily for secondary development.)
- 2020-06-30 01:00:02下载
- 积分:1
-
一种混合贪婪随机自适应搜索 GRASP to solve VRP
一种混合贪婪随机自适应搜索(GRACH)算法,用于解决单车辆段车辆路径问题(a hybrid Greedy Randomized Adaptive Search (GRASP) algorithm that solves a single depot vehicle routing problem)
- 2020-06-25 06:00:02下载
- 积分:1
-
平衡车stm32源码
这是一个两轮平衡车源代码,有OLED显示屏 STM32单片机 直流电机测速
- 2022-01-24 18:37:46下载
- 积分:1
-
读取lidar数据las文件
该代码是读取lidar点云数据las文件的c++代码,其中的代码风格清晰,思路严谨,对于学习lidar数据的同学很有益处,建议各位可以考虑参考一下。
bool lasreader::read_point(float* coordinates)
{
if (read_point())
{
coordinates[0] = (float)(point.x*header.x_scale_factor+header.x_offset);
coordinates[1] = (float)(point.y*header.y_scale_factor+header.y_offset);
coordinates[2] = (float)(point.z*header.z_scale_factor+header.z_offset);
return true;
}
return false;
}
bool lasreader::read_point(double* coordinates)
{
if (read_point())
{
coordinates[0] = point.x*header.x_scale_factor+header.x_offset;
coordinates[1] = point.y*header.y_scale_factor+header.y_offset;
coordinates[2] = point.z*header.z_scale_factor+header.z_offset;
return true;
}
return false;
}
- 2022-03-13 17:33:00下载
- 积分:1
-
xatavase
说明: symbian 格子的生成和使用源代码 让你明白九宫格生成原理 适合游戏开发(Symbian grid generation and use of source code to let you understand the nine grid generation principle suitable for game development)
- 2019-01-06 03:47:51下载
- 积分:1
-
MQTT(连接、订阅、发布、断开)示例
【实例简介】MQTT(消息队列遥测传输)是ISO 标准(ISO/IEC PRF 20922)下基于发布/订阅范式的消息协议。它工作在 TCP/IP协议族上,是为硬件性能低下的远程设备以及网络状况糟糕的情况下而设计的发布/订阅型消息协议,此示例主要使用paho-mqtt.js 连接mqtt服务端,并实现消息的订阅发布
- 2021-06-23 00:31:17下载
- 积分:1
-
server20033389
用于远程登陆,密码可以直接复制粘贴,实用方便,比windows自带的远程工具好用。(For remote login, password, you can directly copy and paste, practical and convenient, than windows own remote tools handy.)
- 2013-12-27 09:30:19下载
- 积分:1
-
《C#从入门到精通》(王小科 吕双 著) 随书源程序及教学视频
压缩包为《C#从入门到精通》(王小科 吕双 著) 随书源程序及教学视频。 原书从初学者角度出发,通过通俗易懂的语言,丰富多彩的实例,详细介绍了使用Visual C#进行WinForm应用程序开发应该掌握的各方面技术。全书共分28章,包括初识C#及其开发环境,开始C#之旅,变量与常量,表达式与运算符,字符与字符串,流程语句控制,数组和集合,属性和方法,结构和类,面向对象技术高级应用,异常处理,Windows窗体,Windows应用程序常用控件,Windows应用程序高级控件,数据访问技术,DataGridView数据控件,程序调试,迭代器和分部类,泛型的使用,文件及数据流技术,帮助文件的使用,GDI+图形图像技术,水晶报表与打印,网络编程技术,注册表技术,线程的使用,Windows应用程序打包,企业人事管理系统等。所有知识都结合具体实例进行介绍,涉及的程序代码给出了详细的注释,可以使读者轻松领会Visual C# WinForm应用程序开发的精髓,快速提高开发技能。本压缩包中含有原书附带的全程语音视频讲解教学录像以及实例的全部源代码,这些源代码都经过精心调试,在Windows XP、Windows 2000、Windows 2003下全部通过。
- 2022-05-14 15:47:47下载
- 积分:1
-
aitejin
艾特金迭代法求解线性方程组源代码,在程序中修改方程就可以(Aitkin iterative method for solving linear equations source code, the equation can be modified in the program)
- 2012-06-03 16:08:11下载
- 积分:1