plastimatch
Loading...
Searching...
No Matches
volume_stats.h
Go to the documentation of this file.
1/* -----------------------------------------------------------------------
2 See COPYRIGHT.TXT and LICENSE.TXT for copyright and license information
3 ----------------------------------------------------------------------- */
4#ifndef _volume_stats_h_
5#define _volume_stats_h_
6
7#include "plmbase_config.h"
8
9class Image_stats;
10class Volume;
11
12/* -----------------------------------------------------------------------
13 Function prototypes
14 ----------------------------------------------------------------------- */
15PLMBASE_API void
17 const Volume *vol,
19PLMBASE_API void
21 const Volume *vol,
22 double *min_val,
23 double *max_val,
24 double *avg,
25 int *non_zero,
26 int *num_vox
27);
28PLMBASE_API void
30 const Volume::Pointer vol,
31 double *min_val,
32 double *max_val,
33 double *avg,
34 int *non_zero,
35 int *num_vox
36);
37
38#endif
Definition image_stats.h:11
Definition pointset.h:15
The Volume class represents a three-dimensional volume on a uniform grid. The volume can be located a...
Definition volume.h:38
#define PLMBASE_API
Definition plmbase_config.h:19
void volume_stats(const Volume *vol, Image_stats *image_stats)
Definition volume_stats.cxx:72