- 博客(110)
- 资源 (9)
- 收藏
- 关注
原创 ubuntu环境下VLFeat在MATLAB上的运行
下载:http://www.vlfeat.org/download.html配置:(1)MATLAB最低版本要求:2009B(2)配置方法:a 临时配置: 下载最新版本的VLFeat binary distribution解压到目录(如(e.g. ~/src/vlfeat))下,用VLFEATROOT带代表此目录。将VLFEATROOT目录的下的VLFEATROOT/t
2014-12-17 16:21:58
3297
原创 Python笔记——input( )和raw_input( )
写了一小段Python代码,想要实现键盘终止程序。代码如下:while True: profit = input("input:") if profit == "quit": breakprint('Done')发现并不如愿。将第二行中的函数input修改为raw_input后,则可实现循环终止。raw_input( ): raw_input将输入作为
2014-12-06 16:30:58
901
原创 Python笔记——Ubuntu下Pydev+Eclipse
因为不想在终端上敲Python代码,所以决定配置下Pydev+Eclipse。配置时主要参考Python的官网:http://pydev.org/manual_101_install.html在配置时,需要认真的阅读Important requisite。在多次安装后,发现我当前系统的配置有两点不符合需求:(1)我的系统版本为1.6.0_30,低于需求(2)Python的版本为2.
2014-12-05 17:21:05
1137
原创 Python笔记——列表(list)
参考网址:https://docs.python.org/3/tutorial/introduction.html#lists
2014-11-26 10:19:52
756
原创 matlab中的prod函数
语法B = prod(A)B = prod(A,dim)B = prod(A,'double')B = prod(A,'native')
2014-09-24 12:34:49
7317
原创 文献阅读笔记——Action Recognition with Stacked Fisher Vectors
本文由Xiaojiang Peng发表在计算机视觉顶级国际会议ECCV2
2014-09-11 13:00:03
2553
原创 ctex表格实例——多行多列合并
需要加入宏:\usepackage{multirow}\begin{table*}[!t]\centering\caption{Experimental evaluation of macro- and micro F score}\label{PrecisionRecall}\begin{tabular}{c|c|c|c|c|c|c|c}
2014-09-09 15:20:07
3289
原创 文献阅读笔记——Boosting VLAD with Supervised Dictionary Learning and High-Order Statistics
本文由西南交通大学一位从事计算机视觉相关研究的boshi
2014-09-09 10:37:50
2325
原创 文献阅读笔记——Non-Associative Higher-Order Markov Networks for Point Cloud Classification
ECCV2014上的一篇关于点云标注的文章。
2014-09-03 12:56:33
1668
1
原创 文献阅读——Unsupervised Feature Learning for 3D Scene Labeling
机器人自动化领域dingICRA 2014的一篇
2014-09-01 12:27:54
1877
原创 文献阅读笔记——Object Co-Detection via Efficient Inference in a Fully-Connected CRF
ECCV 2014的一篇文章。作者是Australian National University的博士生Zeeshan Hayder。
2014-08-08 16:36:52
2927
原创 ctex 插图
1,插入多行子图。参考网址:http://blog.sina.com.cn/s/blog_5e16f1770100gdqz.html如下,2行2列子图。\begin{figure}\centering\subfigure[the first subfigure]{\begin{minipage}[b]{0.2\textwidth}\inclu
2014-08-07 15:22:28
1974
原创 文献阅读笔记——Clustering by fast search and find of density peak
这是近期science上的一篇关于无监督聚类的文章。
2014-07-25 15:28:25
17725
8
原创 ECCV 2014 accepted papers
打开进网页可以看到ECCV今年luhttp://eccv2014.org/accepted-papers/
2014-07-22 17:09:29
3586
原创 VLAD
给定一个码本参考:[1] http://people.rennes.inria.fr/Herve.Jegou/courses/2012_cpvr_tutorial/4-new-patch-agggregation.pptx.pdf
2014-07-02 18:34:48
16323
4
原创 灰度共生矩阵代码实现
2概念2灰度共生矩阵生成编辑灰度直方图是对图像上单个象素具有某个灰度进行统计的结果,而灰度共生矩阵是对图像上保持某距离的两象素分别具有某灰度的状况进行统计得到的。取图像(N×N)中任意一点 (x,y)及偏离它的另一点 (x+a,y+b),设该点对的灰度值为 (g1,g2)。令点(x,y) 在整个画面上移动,则会得到各种 (g1,g2)值,设灰度值的级
2014-06-24 14:13:15
6719
1
原创 C++编程故障处理——error: assignment of read-only data-member ‘std::pair
尝试直接修改map中某个pair的key时给出的报错。由报错可
2014-06-21 10:54:35
15436
原创 C++编程笔记——从map时中删除元素
#include #include using namespace std;int main(){ map map1; map::iterator mapit; map::iterator saveit; map1[1] = 1; map1[2] = 2; map1[3] = 3; map1[4] = 4; mapit
2014-06-18 21:29:34
4513
原创 PCL编程笔记——Assertion `px != 0' failed.
报错: boost::shared_ptr……Assertion `px != 0' failed.
2014-06-17 10:20:51
9523
1
原创 Main函数参数argc,argv说明
参考:http://wiki.opencv.org.cn/index.php/Main%E5%87%BD%E6%95%B0%E5%8F%82%E6%95%B0argc%EF%BC%8Cargv%E8%AF%B4%E6%98%8E
2014-06-16 18:49:16
1149
原创 Shell编程笔记——列出目录下文件的文件名并做循环操作
#!/bin/bashcd /home/weiliu/data/officefilenames=$(ls *.pcd)for file in ${filenames};do echo ${file}done
2014-06-16 16:16:16
8838
原创 Python编程笔记——string.format()
参考:https://docs.python.org/3/library/string.html
2014-06-16 14:57:04
3800
原创 文献阅读笔记——group sparsity and geometry constrained dictionary
周五实验室有同学报告了ICCV一篇
2014-06-14 20:20:13
2965
原创 C++编程故障处理—— conversion from ‘__gnu_cxx::__normal_iterator
报错:conversion from ‘__gnu_cxx::__normal_iterator原因:将const型的迭代器赋值给了非
2014-06-14 18:58:25
7746
原创 C++编程故障处理——multiple definition of
http://yumaoshu.com/?p=235C++的multiple definition of *** first defined here错误
2014-06-14 14:49:42
1712
原创 OpenCV笔记——图像不同位深度间的转换
0.0--1.0之间IPL_DEPTH_64F0.0--1.0之间IPL_DEPTH_32F0--65535之间IPL_DEPTH_32S-32768--32767之间IPL_DEPTH_16S0--65535之间IPL_DEPTH_16U-128--127之间IPL_DEPTH_8S0--255之间IPL_DEPTH_8U
2014-06-11 15:24:06
19600
1
RGBD Salient Object Detection A Benchmark and Algorithms
2014-07-24
最优化方法及其MATLAB程序设计
2010-11-28
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅