VIP: Volume Image Processing


splineresamp.h
Go to the documentation of this file.
1/*****************************************************************************
2 * PROJECT : V.I.P. Library
3 * MODULE NAME : vip/splineresamp * TYPE : Header
4 * AUTHOR : MANGIN J.F. * CREATION : 20/01/99
5 * VERSION : 1.4 * REVISION :
6 * LANGUAGE : C * EXAMPLE :
7 * DEVICE : Ultra
8 *****************************************************************************
9 *
10 * DESCRIPTION : Spline resampler
11 *
12 *****************************************************************************
13 *
14 * USED MODULES :
15 *
16 *****************************************************************************
17 * REVISIONS : DATE | AUTHOR | DESCRIPTION
18 *--------------------|--------------|----------------------------------------
19 * / / | |
20 *****************************************************************************/
21
22
23
24#ifndef VIP_SPLINERESAMP_H
25#define VIP_SPLINERESAMP_H
26
27#ifdef __cplusplus
28 extern "C" {
29#endif
30
31#include <stdio.h>
32#include <stdlib.h>
33#include <string.h>
34#include <stdarg.h>
35#include <limits.h>
36#include <errno.h>
37#include <math.h>
38
39#include <vip/volume.h>
40#include <vip/depla.h>
41
42
43/*------------------------------------------------------------------*/
45Volume *vol,
46Volume *template,
48int degree);
49/*------------------------------------------------------------------*/
50
51
52#ifdef __cplusplus
53 }
54#endif
55
56#endif /* VIP_SPLINERESAMP_H */
struct deplacement VipDeplacement
Volume * VipSplineResamp(Volume *vol, Volume *template, VipDeplacement *dep, int degree)