imgmax.h
Go to the documentation of this file.
00001 /******************************************************************************
00002 
00003   imgmax.h    (c) 2007,2009 by Turku PET Centre
00004 
00005   2007-01-24 VO
00006   2007-03-25 VO
00007   2009-12-01 VO
00008 
00009 ******************************************************************************/
00010 #ifndef _IMGMAX_H
00011 #define _IMGMAX_H
00012 /*****************************************************************************/
00013 #include "img.h"
00014 /*****************************************************************************/
00015 extern int imgMax(IMG *img, float *maxvalue);
00016 extern int imgAbsMax(IMG *img, float *maxvalue);
00017 extern int imgMinMax(IMG *img, float *minvalue, float *maxvalue);
00018 extern int imgFrameMinMax(IMG *img, int frame, float *minvalue, float *maxvalue);
00019 extern int imgReadMinMax(const char *fname, float *fmin, float *fmax);
00020 extern int imgSmoothMax(IMG *img, float *maxvalue);
00021 /*****************************************************************************/
00022 #endif
00023