自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

xiaochaoqu的专栏

机器学习,计算机视觉,图像处理

  • 博客(54)
  • 资源 (1)
  • 收藏
  • 关注

原创 编译MatConvNet window下解决gdiplus库的问题

编译MatConvNet的时候,matlab 提示不能链接gdiplus库解决方法: 下载gdipllus库,并修改visual studio项目属性使得该库可以被链接。

2015-12-19 22:04:17 674

转载 解释array与pointer关系

The name of an array usually evaluates to the address of the first element of the array, so arrayand &array have the same value (but different types, so array+1 and &array+1 will not be equal if t

2015-12-13 22:30:26 940

原创 numpy : the difference between row and column vector

http://stackoverflow.com/questions/17428621/python-differentiating-between-row-and-column-vectorshttp://stackoverflow.com/questions/15165170/how-do-i-maintain-row-column-orientation-of-vectors-in-nu

2015-07-29 23:05:57 762

原创 神经网络特征可视化

1. visualizing higher-layer features of a deep network本文提出了两种可视化方法。 1. 最大化activation当训练完一个深层神经网络之后, 固定所有参数。 然后对于某一个神经元的activation进行梯度上升优化来寻找能使它的值最大化的input。 不断的用gradient ascent来更新一个初始化为random

2015-07-09 22:04:31 2607

原创 Learning Face Representation from Scratch

1. 这篇文章提出了一种构造大规模人脸数据库的方法。并开源了该数据库 CASIA-webface2. 作者在CASIA-webface上训练了一个11层的CNN网络, 并把学到的feature在LFW上测试性能, 实验显示学到的feature效果非常好。待做自己完成face alignment代码,尝试重复该论文的实验。

2015-05-30 12:33:00 2515 4

原创 reading list

When Face Recognition Meets with Deep Learning: an Evaluation ofConvolutional Neural Networks for Face Recognition

2015-04-15 15:32:38 512

原创 caffe 学习资料

http://courses.cs.tau.ac.il/Caffe_workshop/Bootcamp/pdf_lectures/

2015-03-29 13:23:03 387

原创 ubuntu 安装 NVIDIA 显卡驱动, 切换双显卡的方法。

ubuntu下安装NVIDIA显卡驱动方法

2015-03-21 18:24:43 1837

原创 logistic regression using Theano 注释版

利用Theano训练逻辑回归模型

2015-01-18 15:38:14 762

原创 numpy 中 + 和 += 的区别

+= acts in place to modify an existing array rather than create a new one.a = ones((2,3),dtype = int) # a 是 int32array([[1, 1, 1],       [1, 1, 1]])b = random.random((2,3))  # b是float64

2015-01-12 18:45:02 604

原创 good points in papers

1.  Natural images consist mainly of flat regions separated by sharp edges. (A+,Adjusted Anchored Neighborhood Regression for Fast Super-Resolution)

2014-12-31 14:05:30 656

原创 Learning Discriminant Face Descriptor

Three steps of the LBP like feature extractoin1. Image filter: reduce the noise affection and enhance the useful information2. pixel patterns are sampled and compared3. encoded image is obtained

2014-12-14 13:01:00 1003 1

原创 matrix analysis and applied linear algebra

读书笔记 ill conditioned and well conditioned linear systems ()

2014-10-29 13:33:51 1381

原创 卷积神经网络 资源

http://blog.163.com/lipse_huang/blog/static/19165754520133954138888/http://blog.csdn.net/zouxy09/article/details/14222605http://www.codeproject.com/Articles/16650/Neural-Network-for-Recognition-

2014-09-27 22:25:57 1228

原创 Reproducing Experimental Results

http://www.cad.zju.edu.cn/home/dengcai/Data/ReproduceExp.html

2014-08-01 18:16:13 472

原创 matlab 代码 一些常用的 降维算法

http://sugiyama-www.cs.titech.ac.jp/~sugi/software/SoftwareThe software available below is free of charge for research and education purposes. However, you must obtain a license from

2014-07-30 17:26:08 11529 2

原创 Convolutional neural network class 卷积神经网络 代码

https://sites.google.com/site/mihailsirotenko/projects/convolutional-neural-network-class

2014-07-09 01:49:53 754

原创 一些优化过的matlab 函数

http://research.microsoft.com/en-us/um/people/minka/software/lightspeed/比moren

2014-06-19 21:55:13 559

原创 Advanced Programming in MATLAB 高级matlab程序设计

地址   http://www.lmsc.ethz.ch/Teaching/ipss_2010/advancedProgramming.pdf

2014-06-18 13:07:45 683

原创 一张图清楚解释 计算复杂度 bigO

ppt地址 https://docs.google.com/presentation/d/1I-F2F9ntZzfZTk15yBcpMHEMqBK3VNezVOmiU2kKGnA/edit#slide=id.i86

2014-06-12 16:11:51 2082

原创 人脸识别 开放书籍 下载地址

http://www.intechopen.com/books/face-recognition

2014-05-09 00:47:18 2203

原创 JPEG格式 详解

里面关于huffman table 解释的很清楚 地址 http://read.pudn.com/downloads63/doc/220135/JPEG.pdf

2014-05-01 16:44:20 857

转载 生成 ZIG-ZAG 扫描顺序MATLAB代码

MATLABfunction matrix = zigZag(n)  %This is very unintiutive. This algorithm parameterizes the %zig-zagging movement along the matrix indicies. The easiest way to see %what th

2014-03-24 17:13:27 5908

转载 关于线性变换的一些概念

Linear mapping, linear transformation, homomorphism, isomorphism, operators, linear and nonlinear transformations, change of basis, similar matricesDef. Linear mapping (or linear transformation)

2014-03-24 17:09:36 1186

原创 face databases

http://web.mit.edu/emeyers/www/face_databases.html#ar

2014-02-21 14:47:33 545

原创 good sentences from some papers

The following is the list of some good sentences from CV papers, more sentences will be added in the future. 1. In practice, the feature dimension m is often very high and, thus, it is necessary and

2014-01-11 15:27:33 581

原创 SpaSM: A Matlab Toolbox for Sparse Statistical Modeling matlab 工具箱 LDA-L1 norm

matlab tool box for LDA-L1 norm

2014-01-03 14:54:15 3335

原创 Four face databases in matlab format 4个matlab 格式的 人脸识别 数据集

人脸识别数据集

2013-12-28 13:03:35 1329

原创 face recognition matlab code 人脸识别

matlab 人脸识别代码

2013-12-08 12:42:42 3129

原创 什么是 whitened

a zero mean random vector is said to be white if its elements are uncorrelated and have unit variance

2013-12-07 15:35:17 1144

转载 如何Latex中把下标放置到正下方

使用 \xleftarrow or \xrightarrow. 两者的用法相同。a=b \xleftarrow[H]{\xi+a\timesc} f=g          使用 \overseta=b \overset{F}{\longleftarrow}c=d          使用 \stackrela=b \stackrel{F}{\longleftright

2013-12-05 15:58:20 7939

原创 imageMagick 转换RGB raw 图像 到 BMP 图像 方法

http://www.imagemagick.org/discourse-server/viewtopic.php?t=22999&p=96286

2013-11-29 12:00:16 1862

原创 maximum likelihood estimation 一个讲解

https://files.nyu.edu/mrg217/public/mle_introduction1.pdf

2013-11-16 19:27:08 1059

转载 linear programming , quadratic programming, nonlinear programming and integer programming

The example of this section has three important properties.• Its variables (the amounts of ice cream and butter to produce) are continuous variables. They can take on any real value, subject to sati

2013-11-15 16:45:15 1100

原创 关于方差和协方差的一个详细讲解

http://www.stat.yale.edu/~pollard/Courses/241.fall97/Variance.pdf这是一个关于方差和协方差的详细讲解。 本文出自 “无聊之地” 博客,请务必保留此出处http://quxiao.blog.51cto.com/933548/768306

2013-11-14 16:59:54 1205

转载 傅里叶变换的物理意义【zz】

1、为什么要进行傅里叶变换,其物理意义是什么?傅立叶变换是数字信号处理领域一种很重要的算法。要知道傅立叶变换算法的意义,首先要了解傅立叶原理的意义。傅立叶原理表明:任何连续测量的时序或信号,都可以表示为不同频率的正弦波信号的无限叠加。而根据该原理创立的傅立叶变换算法利用直接测量到的原始信号,以累加方式来计算该信号中不同正弦波信号的频率、振幅和相位。和傅立叶变换算法对应的是反傅立叶变换算法。

2013-11-14 16:59:39 833

转载 傅里叶变换的意义【zz】

傅里叶变换是一种解决问题的方法,一种工具,一种看待问题的角度。  理解的关键是:一个连续的信号可以看作是一个个小信号的叠加,从时域叠加与从频域叠加都可以组成原来的信号,将信号这么分解后有助于处理。  我们原来对一个信号其实是从时间的角度去理解的,不知不觉中,其实是按照时间把信号进行分割,每一部分只是一个时间点对应一个信号值,一个信号是一组这样的分量的叠加。傅里叶变换后,其实还是个叠加问题,只不过是

2013-11-14 16:59:37 653

原创 判断无向图是不是连通的c++代码

// DFS.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include using namespace std;bool isconnected(vector>);void DFS(vector>,int );vector  visited;int _tmain(int argc, _TCHAR* argv[]){   int V

2013-11-14 16:59:35 4953

原创 merge sort 的代码

以下是merge sort 的代码 ,最坏情况下比插入排序要好 ,适合大规模排序:  // mergesort.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include using namespace std;void merge(int *,int,int,int);void mergeSort(int*,int ,int);int

2013-11-14 16:59:33 720

原创 选择排序的伪代码

以下是选择排序的伪代码以及一些分析:SELECTION-SORT(A)                         执行次数1   for j = 1 to Length(A)                              n2       i = j                                                          n

2013-11-14 16:59:31 13573

Dimension Reduction A Guided Tour

一个关于数据降低纬度的文档。 基本上涵盖了流行的各种降低纬度的方法。

2014-07-09

空空如也

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

TA关注的人

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