20140325 数组与二级指针 人体检测

1、面试宝典题目:

#include<iostream>
using namespace std;
struct S
{
    int i;
    int *p;
};
void main()
{
    S s;
    int *q=&s.i;
    q[0]=4;
    q[1]=3;
    s.p=q;
    s.p[1]=1;
    s.p[0]=2;
}

IMG_0509

 

2、数组指针与二级数组指针

3、人体检测

Human Detection Using Partial Least Squares Analysis:  http://homepages.dcc.ufmg.br/~william/research.html#human_detection_using_partial_least_squares

pca

posted @ 2014-03-25 20:57  yexuannan  阅读(126)  评论(0编辑  收藏  举报