自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

积沙成塔

计算机视觉与机器学习

  • 博客(22)
  • 资源 (9)
  • 收藏
  • 关注

原创 Shell编程笔记——Syntax error: "(" unexpected

参考网页:运行文集Syntax error: "(" unexpected编程

2014-05-28 17:21:28 18963

原创 Feature Normalize

参考网址:https://code.google.com/p/marcellodesales-cs-research/source/browse/trunk/online-stanford-usa/mlclass-ex1/featureNormalize.m?r=40

2014-05-28 09:50:38 6621

翻译 Python笔记——string.strip()

参考网址:http://www.tutorialspoint.com/python/pdf/string_strip.pdf函数描述:去掉字吃

2014-05-27 20:21:39 3457 1

原创 Python笔记——string.split()

参考网址:http://www.tutorialspoint.com/python/string_split.htm函数描述:

2014-05-27 19:57:26 3224

原创 Python 笔记—— string.count()

参考网页:http://www.tutorialspoint.com/python/pdf/string_count.pdf

2014-05-27 18:48:42 3134

原创 Python笔记——module加载失败

最近在调程序,用到C和Python的混编。

2014-05-26 20:55:48 1759

原创 Python笔记——从shell中退出python命令

从shell中退出python命令:是

2014-05-26 14:55:57 37447 2

原创 C++笔记——equal_range

// map::equal_range#include #include int main (){ std::map mymap; mymap['a']=10; mymap['b']=20; mymap['c']=30; std::pair::iterator,std::map::iterator> ret; ret = mymap.equal_range('

2014-05-21 15:47:57 3776 1

原创 C++编程故障处理——实参不依赖模板参数

#include template class Base{public: void exit(){};}; template class Derived : public Base{public: void foo(){ exit(); }}; int main(int argc, char* argv[]){ Derived

2014-05-20 21:45:33 6838 1

原创 PCL读取与保存点云文件

#include #include #include intmain (int argc, char** argv){ pcl::PointCloud::Ptr cloud (new pcl::PointCloud); if (pcl::io::loadPCDFile ("test_pcd.pcd", *cloud) == -1) //* load the file {

2014-05-19 16:54:13 16687 1

翻译 C++笔记——std::min_element和std::max_element

参考网页:http://en.cppreference.com/w/cpp/algorithm/min_element主要有两种用法template ForwardIt min_element( ForwardIt first, ForwardIt last );和templateForwardIt min_element( ForwardIt

2014-05-15 22:04:30 14578

原创 Eigen笔记——初步体验

参考网址:http://eigen.tuxfamily.org/dox-devel/group__TutorialMatrixArithmetic.html

2014-05-14 13:42:09 1262

原创 Opencv笔记——图像的部分基本操作(待补充)

参考网址:http://docs.opencv.org/modules/core/doc/basic_structures.htmlhttp://docs.opencv.org/doc/user_guide/ug_mat.html

2014-05-13 14:59:13 2924

原创 ubuntu下的eclipse笔记

1、安装安装命令:sudo apt-get install eclipse-cdt eclipse2、导入已有项目两种方法:  1)在eclipse里新建一个与要导入的工程同名工程;2)  file-->import-->general-->Existing Project into Workspace3、快捷键自动补全提示:ALT+/注释与去注释:Ctrl+/

2014-05-13 11:05:14 960

原创 OpenCV 2.4.6.1在Ubuntu 12.04上的安装

参考网址:1 opencv 官网:http://docs.opencv.org/doc/tutorials/introduction/linux_install/linux_install.html?highlight=install2    http://www.ozbotz.org/opencv-installation-2-3-1/3    http://anuruddh

2014-05-12 20:02:59 1409

翻译 散布矩阵(Scatter Matrix)(一)

参考网页:http://en.wikipedia.org/wiki/Scatter_matrix

2014-05-12 13:54:48 21470

翻译 Product Sparse Coding

这是CVPR_2014的一篇文章关于sparse coding的wen

2014-05-09 15:22:40 2795

原创 向量的数量函数的导数

公式:向量

2014-05-08 16:11:47 11828 2

原创 浅谈Matching Pursuit和Orthogonal Matching Pursuit

前几天看了点关于sparse coding的东西,

2014-05-06 15:11:59 8609

原创 如何在博客中插入公式

转自博客:http://blog.csdn.net/linraise/article/details/11712937在CSDN写博客的时候,每次遇到需要输入公式的时候,以前都是用MathType编辑好之后再保存为图片。MathType下载地址:MathType编辑器(免积分),再上传到博客中,十分的麻烦。今天试着用了另外一种办法。首先登陆http://www.code

2014-05-06 14:20:17 1842

转载 CVPR 2014 论文

Accepted OralsReconstructing Storyline Graphs for Image Recommendation from Web Community Photos (project, PDF)Gunhee Kim* (Disney Research), Eric Xing (Carnegie Mellon University)Unsupervised O

2014-05-05 17:13:25 21341

原创 Dense SIFT

参考网址:http://www.scholarpedia.org/article/Scale_Invariant_Feature_Transform

2014-05-05 16:02:13 14895 5

RGBD Salient Object Detection A Benchmark and Algorithms

ECCV2014最新论文RGBD Salient Object Detection A Benchmark and Algorithms。

2014-07-24

《矩阵分析》课本

《矩阵分析》课本,工科研究生用书,由武汉大学出版社出版。

2014-05-07

ISODATA(带注释和例子)

ISODATA的的MATLAB代码(带详细注释和例子)。

2013-08-20

gsl-1.8.exe

在运行Rob Hess 所写的sift算法需要用到的文件

2011-03-21

用vC编写的计算器(界面设计)

用VC编的加减乘除的计算器,我已经调试过了,可以用的,谢谢支持

2011-03-20

基于opencv的sift程序

是基于opencv的sift算法,欢迎大家使用

2011-01-20

可以用MATLAB实现的Kd tree

matlab可用的kd-tree算法,运行时请将mex下对应系统的文件加入到matlab路径中

2010-12-01

最优化方法及其MATLAB程序设计

详细介绍了线搜索技术、最速下降法、牛顿法、共轭梯度法、拟牛顿法、信赖域方法、非线性最小二乘问题、罚函数法、可行方向法、二次规划和序列二次规划法,并附带了相关的程序

2010-11-28

基于sift算法的无人机遥感图像配准

IEEE上的一篇论文,感觉很不错,就上传了

2010-10-29

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除