摘要: Git and GitHub https://github.com/shaoqingren/faster_rcnn降维工具箱:http://lvdmaaten.github.io/drtoolbox/ 阅读全文
posted @ 2015-11-24 17:56 邪恶的亡灵 阅读(529) 评论(0) 推荐(0) 编辑
摘要: 关于代码的学习。 预备知识: 1、matlab函数:circshift,矩阵循环平移函数。 调用形式:circshift(A,[m,n]);,将矩阵A向下循环平移m行,向右循环位移n列 a = [1,2,3;4,5,6;7,8,9]; b = circshift(a,[1,2]) b = 8 9 7 2 3 1 5 ... 阅读全文
posted @ 2015-11-24 08:48 邪恶的亡灵 阅读(738) 评论(0) 推荐(0) 编辑