07 2016 档案

分治算法求乘方a^b 取余p(divide and conquer)
摘要:传统的计算方法为循环n个a相乘。时间复杂度为O(n)。 如用分治算法,效率可提升至O(lgn)。 结合recursive有 也可用循环的方法 阅读全文

posted @ 2016-07-27 08:57 klitech 阅读(1458) 评论(0) 推荐(0)

Memory Region
摘要:A program's memory usage typically includes four different regions: Code -- The region where the program instructions are stored. Static memory -- The 阅读全文

posted @ 2016-07-22 03:56 klitech 阅读(784) 评论(0) 推荐(0)

HoG feature for human detection(HoG 行人识别)
摘要:本文大部分内容总结于其他文章 1.介绍 HOG(Histogram of Oriented Gradient)是2005年CVPR会议上,法国国家计算机科学及自动控制研究所的Dalal等人提出的一种解决人体目标检测的图像描述子,该方法使用梯度方向直方图(Histogram of Oriented G 阅读全文

posted @ 2016-07-21 09:20 klitech 阅读(437) 评论(0) 推荐(0)

导航