VIP: Volume Image Processing


vfilter.h
Go to the documentation of this file.
1/*****************************************************************************
2 * PROJECT : V.I.P. Library
3 * MODULE NAME : vip/vfilter.h * TYPE : Header
4 * AUTHOR : POUPON F. * CREATION : 30/10/1996
5 * VERSION : 0.1 * REVISION :
6 * LANGUAGE : C * EXAMPLE :
7 * DEVICE : Sun SPARC Station 5
8 *****************************************************************************
9 *
10 * DESCRIPTION : Application d'un V-Filtre sur un volume - declarations
11 * cpoupon@cea.fr
12 *
13 *****************************************************************************
14 *
15 * USED MODULES :
16 *
17 *****************************************************************************
18 * REVISIONS : DATE | AUTHOR | DESCRIPTION
19 *--------------------|--------------|----------------------------------------
20 * / / | |
21 *****************************************************************************/
22
23#ifndef VIP_VFILTER_H
24#define VIP_VFILTER_H
25
26#ifdef __cplusplus
27 extern "C" {
28#endif
29
30#include <vip/volume.h>
31#include <vip/alloc.h>
32
33#define OPTIMIZED_VFILTER 100
34#define NON_OPTIMIZED_VFILTER 101
35
36#define MAXVAR (double)(-1L)
37
38/*---------------------------------------------------------------------------*/
40 Volume *vol,
41 int size
42);
43/*---------------------------------------------------------------------------*/
44
45/*---------------------------------------------------------------------------*/
47 Volume *vol,
48 int size
49);
50/*---------------------------------------------------------------------------*/
51
52#ifdef __cplusplus
53 }
54#endif
55
56#endif
Volume * VipVFilter(Volume *vol, int size)
Volume * VipNonOptimizedVFilter(Volume *vol, int size)