VIP: Volume Image Processing


pca.h
Go to the documentation of this file.
1/****************************************************************************
2 * PROJECT : V.I.P. Library
3 * MODULE NAME : Vip_pca.h * TYPE : Header
4 * AUTHOR : POUPON F. * CREATION : 28/06/1996
5 * VERSION : 0.1 * REVISION :
6 * LANGUAGE : C++ * EXAMPLE :
7 * DEVICE : Sun SPARC Station 5
8 ****************************************************************************
9 *
10 * DESCRIPTION : Analyse en Composantes Principales
11 *
12 ****************************************************************************
13 *
14 * USED MODULES : Vip_alloc.h - Vip_eigen - Vip_util.h
15 *
16 ****************************************************************************
17 * REVISIONS : DATE | AUTHOR | DESCRIPTION
18 *--------------------|--------------|---------------------------------------
19 * / / | |
20 ****************************************************************************/
21
22#ifndef VIP_PCA_H
23#define VIP_PCA_H
24
25#ifdef __cplusplus
26 extern "C" {
27#endif
28
29#include <vip/alloc.h>
30#include <vip/eigen.h>
31#include <vip/util.h>
32
33#define PCA_CORRELATION 100
34#define PCA_COVARIANCE 101
35#define PCA_SSCP 102
36
37#ifdef __cplusplus
38 }
39#endif
40
41#endif