Tekkotsu Homepage
Demos
Overview
Downloads
Dev. Resources
Reference
Credits

RawImagePyramid.h

Go to the documentation of this file.
00001 #ifndef RAW_IMAGE_PYRAMID_H
00002 #define RAW_IMAGE_PYRAMID_H
00003 
00004 #include "RawImage.h"
00005 
00006 class RawImagePyramid {
00007 
00008 public:
00009   static const unsigned int NUM_PYRAMID_LAYERS = 4;
00010 
00011   RawImagePyramid();
00012   ~RawImagePyramid();
00013 
00014   RawImage& operator[] (unsigned int index) { return *layers[index]; }
00015 
00016   void loadFromRawY();
00017 
00018   void printLayer(unsigned int layer);
00019 
00020 private:
00021   std::vector<RawImage*> layers;
00022 
00023 };
00024 
00025 
00026 #endif

Tekkotsu v5.1CVS
Generated Mon May 9 04:58:49 2016 by Doxygen 1.6.3