- 博客(14)
- 资源 (2)
- 收藏
- 关注
转载 值得推荐的C/C++框架和库 (真的很强大)
值得学习的C语言开源项目- 1. WebbenchWebbench是一个在linux下使用的非常简单的网站压测工具。它使用fork()模拟多个客户端同时访问我们设定的URL,测试网站在压力下工作的性能,最多可以模拟3万个并发连接去测试网站的负载能力。Webbench使用C语言编写, 代码实在太简洁,源码加起来不到600行。下载链接:http://home.tiscali.cz/
2015-12-15 21:26:18
716
转载 理解 Objective-C 的 ARC
在ARC出现以前,程序员们只能靠retain/relese/autorelease来确保对象们恰好“坚持”到被需要的那一刻。如果忘了retain,或者多次release某个对象,程序就会发生内存泄漏的问题,甚至直接崩溃。在Xcode 4.2中,除了语法检查外,Apple的新LLVM编译器还将内存管理的苦差事接了过来,它会检查代码,决定何时释放对象。Apple的文档里是这么定义ARC的:
2015-12-11 12:46:50
405
原创 非对称加密与通信
非对称加密服务器建立公钥: 每一次启动 sshd 服务时,该服务会主动去找 /etc/ssh/ssh_host* 的文件,若系统刚刚安装完成时,由于没有这些公钥,因此 sshd 会主动去计算出这些需要的公钥,同时也会计算出服务器自己需要的私钥客户端主动联机请求: 若客户端想要联机到 ssh 服务器,则需要使用适当的客户端程序来联机,包括 ssh, putty 等
2015-12-10 20:23:11
2054
转载 Swift 中的指针使用
Swift 中的指针使用Apple 期望在 Swift 中指针能够尽量减少登场几率,因此在 Swift 中指针被映射为了一个泛型类型,并且还比较抽象。这在一定程度上造成了在 Swift 中指针使用的困难,特别是对那些并不熟悉指针,也没有多少指针操作经验的开发者 (包括我自己也是) 来说,在 Swift 中使用指针确实是一个挑战。在这篇文章里,我希望能从最基本的使用开始,总结一下在 Swif
2015-12-09 11:51:40
439
转载 Using Legacy C APIs with Swift
Swift’s type system is designed to make our lives easier by enforcing strict rules around what we can and cannot do in our code. This is undoubtedly a great thing and it encourages programmers to writ
2015-12-09 10:56:44
422
转载 图像处理中不适定问题(ill posed problem)或称为反问题(inverse Problem)
转载自http://blog.sina.com.cn/s/blog_6833a4df0100nne9.html 图像处理中不适定问题(ill posed problem)或称为反问题(inverse Problem)的研究从20世纪末成为国际上的热点问题,成为现代数学家、计算机视觉和图像处理学者广为关注的研究领域。数学和物理上的反问题的研究由来已久,法国数学家阿达马早在19世纪就提出
2013-03-07 22:33:35
4749
转载 Adjacency and topology
AdjacencyVCG Lib does not have a hard-coded way to encode the adjacencies among simplices. It all depends on which attributes are stored with the simplices and how they are used. I the previous ex
2013-01-18 22:54:01
718
原创 连分式
一般连分式,可以写为:简记为:其对应的截断部分和,记为,令xn =An/Bn ,于是 如果系列{xn}收敛,则连分式收敛,并有确定值;否则,连分式发散。性质1 递推公式 行列式公式: 性质2 等价变换:如果{ci} = {c1,c2,c
2012-03-13 12:19:30
3926
原创 在visual studio 2010下编译meshlab
1 所需工具:一个c++编译器(比如Visual c++ 2010)meshlab的源代码。可到https://sourceforge.net/projects/meshlab/files/meshlab/下载相应的版本;创建一个目录(比如~/devel),将meshlab的源代码压缩包,直接解压到该目录。qt库。可到ftp://ftp.qt.nokia.com/qt/source/下载
2012-03-11 18:45:13
4831
转载 Compiling Meshlab
What you need To compile MeshLab you need a C++ compiling environment, (we regularly compile meshlab under VisualStudio 2005, gcc and xcode) and the following libraries:Qt 4.4 (note that Qt 4.
2012-03-10 20:56:36
3665
转载 The Radon Transform
BackgroundIn recent years the Hough transform and the related Radon transformhave received much attention. These two transforms are able t
2011-10-14 10:48:34
1314
转载 Diffussion Distance
源地址:http://www.cs.jhu.edu/~ming/Blog/DiffusionDistance.htm Mings Note Diffusion DistanceA few weeks ago, we read two beautifullywrittenpapers in our graphics seminar. Bot
2011-06-05 20:37:00
849
转载 How to work with MeshLab's mesh
The next step is to understand how mesh works in MeshLab. MeshLab's defines a CMeshO class.A CMeshO is a collection of vertices and triangular faces. A Face is (mainly) a three pointers structure to
2011-05-13 21:42:00
978
原创 meshlab Data Structure
<br />Two cents on the basic types inside MeshLab, whose declaration are in meshmodel.h:the basic document type is a MeshDocument that is basically a list of MeshModel. each MeshModel corresponds to one layer and contains a vcg mesh of type CMeshOCMeshO is
2011-05-13 20:11:00
1240
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人