imgmax.h
Go to the documentation of this file.
1 /******************************************************************************
2 
3  imgmax.h (c) 2007,2009 by Turku PET Centre
4 
5  2007-01-24 VO
6  2007-03-25 VO
7  2009-12-01 VO
8 
9 ******************************************************************************/
10 #ifndef _IMGMAX_H
11 #define _IMGMAX_H
12 /*****************************************************************************/
13 #include "img.h"
14 /*****************************************************************************/
15 extern int imgMax(IMG *img, float *maxvalue);
16 extern int imgAbsMax(IMG *img, float *maxvalue);
17 extern int imgMinMax(IMG *img, float *minvalue, float *maxvalue);
18 extern int imgFrameMinMax(IMG *img, int frame, float *minvalue, float *maxvalue);
19 extern int imgReadMinMax(const char *fname, float *fmin, float *fmax);
20 extern int imgSmoothMax(IMG *img, float *maxvalue);
21 /*****************************************************************************/
22 #endif
23