CARMA C++
Image.h
1 #ifndef CARMA_ANTENNA_COMMON_IMAGE_H
2 #define CARMA_ANTENNA_COMMON_IMAGE_H
3 
4 #include <CImg.h>
5 
6 #include "carma/antenna/common/Image_fwd.h"
7 
8 namespace carma {
9 namespace antenna {
10 namespace common {
11 
15  typedef cimg_library::CImg< unsigned char > RawImage;
16 
17  struct CImgStats {
18 
19  CImgStats( const cimg_library::CImg< double > & stats);
20 
21  double min;
22  double max;
23  double mean;
24  double variance;
25  double xmin;
26  double ymin;
27  double zmin;
28  double cmin;
29  double xmax;
30  double ymax;
31  double zmax;
32  double cmax;
33  };
34 
35 }}}
36 #endif
cimg_library::CImg< unsigned char > RawImage
Typedef for raw framegrabber image.
Definition: Image.h:15