摘要: 转载出处:http://my.oschina.net/xhan/blog/305943从官网 www.lua.org/ftp/lua-1.0.tar.gz 下代码。如何编译,ReadMe 里有这样的说明:The code compiles and runs in RedHat 5.2 with gc... 阅读全文
posted @ 2015-11-02 20:14 vd01 阅读(335) 评论(0) 推荐(0)
摘要: 转载出处:http://my.oschina.net/xhan/blog/305539为什么是 Lua 忘记是什么时候接触到 Lua 的了,也忘记是为什么接触到她的。现在想想,也许是因为下面两个原因: WOW 里有用到她,我上学的时候,玩过一段时间 WOW,了解一点 WOW 插件的编写,当时觉得这个... 阅读全文
posted @ 2015-11-02 20:13 vd01 阅读(453) 评论(0) 推荐(0)
摘要: conference:• CVPR - Computer Vision and Pattern Recognition• ICCV - International Conference on Computer Vision• ECCV - European Conference on Compute... 阅读全文
posted @ 2015-10-13 11:28 vd01 阅读(2479) 评论(1) 推荐(0)
摘要: 方法名称度量相似性的方法相似性的层面针对问题Canonical correspondence(dis-)similarity metricsraw pixel intensitiesthe same underlying scene,brightness constancy assumptionI... 阅读全文
posted @ 2015-09-27 16:32 vd01 阅读(431) 评论(0) 推荐(0)
摘要: .. 阅读全文
posted @ 2015-09-04 11:37 vd01 阅读(113) 评论(0) 推荐(0)
摘要: .. 阅读全文
posted @ 2014-09-05 11:41 vd01 阅读(112) 评论(0) 推荐(0)
摘要: [This was posted to comp.lang.c by its author, David Anderson, on 1994-05-06.] 文章转自:http://c-faq.com/decl/spiral.anderson.html The ``Clockwise/Spiral 阅读全文
posted @ 2014-08-28 16:28 vd01 阅读(323) 评论(0) 推荐(0)
摘要: 一个由c/C++编译的程序占用的内存分为以下几个部分: 1、栈区(stack)——由编译器(Compiler)自动分配释放 ,存放函数的参数值,局部变量的值等。其操作方式类似于数据结构中的栈。 * C/C++中的自动变量(auto)是直接利用栈的例子,这也就是为什么当函数返回时,该函数的自动变量自动... 阅读全文
posted @ 2014-08-04 10:54 vd01 阅读(772) 评论(0) 推荐(0)