-
stl_introduction
本书从c基础开始深入STL,而且是Word版,可以直接复制书上的代码在VC平台上运行。(This book started from the c-based in-depth STL, but also a Word version, you can directly copy the code book on the VC platform.)
- 2009-11-01 08:52:15下载
- 积分:1
-
halfedge
国外一个计算机图形学课程的作业源代码,输入*.obj文件中的三角形网格,构造模型的半边数据结构,使用动态数组和哈希表,提取棱边并用opengl突出显示。(A half-edge mesh adjacency data structure is provided, along with a very simple .obj mesh parser. Throughout this code you are asked to consider the efficiency of various mesh operations. )
- 2011-04-23 17:44:26下载
- 积分:1
-
fastharrisdetector
说明: harris 角点检测 MATLAB 代码(Harris corner detection MATLAB code)
- 2010-05-05 10:06:04下载
- 积分:1
-
mofangjpsr
说明: 模拟键盘输入,用C#语言开发的,有需要的可以下载。(Simulated keyboard input, with the C# language development, there is a need can be downloaded.)
- 2011-03-09 19:58:52下载
- 积分:1
-
Modbus RTU 調適工具
说明: 使用威倫人機編譯的Modbus 51調適工具
支持STC 國產PLC(Modbus 51 Adjustment Tool Using Willen Compiler
Support STC Domestic PLC)
- 2020-06-17 04:40:01下载
- 积分:1
-
单片机开发示例代码
单片机开发
- 2015-04-25下载
- 积分:1
-
Real-time-O(1)-Bilateral-Filtering
本代码是Real-time O(1) Bilateral Filtering,也就是常数时间复杂度的双边滤波器,它对于很多其他算法有着很大的作用。对应论文就是Real-time O(1) Bilateral Filtering。亲自编译运行通过(It is the C++ code of Real-time O(1) Bilateral Filtering, that is, constant time complexy bilateral filtering, it is vitally useful for other algorithams. The responding paper is Real-time O(1) Bilateral Filtering. It is execuable.)
- 2015-01-09 10:13:34下载
- 积分:1
-
CSharpAgileDevelop51program
51编程C#敏捷开发框架源码,51编程C#敏捷开发框架源码(51 Programming C# Agile development framework Source)
- 2016-06-04 18:50:57下载
- 积分:1
-
海康官方demo
海康官方demo,包含操作文档
- 2020-12-12下载
- 积分:1
-
DDA 算法的实现
数字微分分析器或只是简略的 DDA 直线绘制算法是用于光栅图形设备中绘制线条。在这种算法,在行的开始和结束位置已提供。
中介像素位置将在起始点和结束点之间的时间间隔的变量线性内插法计算。该算法如下所示:
让开始和结束点线的是 (x 1,y1) 和 (x2,y2),分别。所以坡、 m = (y2-y1)/(x2-x1)。根据 m 和该象限的 (x,y) 的值属于,中介像素职位要计算如下:
职位要计算如下:
象限
m < = 1
m > 1
第一次
x = x + 1
y = y + m
x = x + 1/m
y = y + 1
第二次
x = x 1
y = y + m
- 2022-08-10 08:17:23下载
- 积分:1