Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #ifndef TPIMAGE_H
00033 #define TPIMAGE_H
00034
00035 #include <fstream>
00036 #include <iostream>
00037 #include <string>
00038 #include <cstring>
00039 #include <cassert>
00040 #include <typeinfo>
00041 #include <stdint.h>
00042
00043
00044 #include <sensor_msgs/Image.h>
00045
00046 typedef unsigned char uchar;
00047
00051
00052 template<class T>
00053 class Image {
00054 int width, height;
00055 T *image, *img;
00056 bool localalloc;
00057 public:
00059
00062 Image(int w, int h, T *ptr=NULL);
00063
00064 ~Image() { if (localalloc) free(img); }
00066
00068 void SetSize(int w, int h);
00070
00071 void SetData(T *ptr) { image = ptr; }
00073
00076 void SetDataAlign(T *ptr, int w, int h);
00078
00081 void SetDataAlign(const sensor_msgs::Image &img_msg, int w, int h, bool withColor = true);
00083
00084 bool Load(const char *filename);
00086
00087 bool LoadRGB(const char *filename);
00089
00092 void Store(const char *filename, bool norm = false, bool ascii =false) const;
00094
00095 void StoreRGB(const char *filename) const;
00097
00098 void StoreYUV(const char *filename) const;
00100 T *GetData() const { return image; }
00102 int GetWidth() const { return width; }
00104 int GetHeight() const { return height; }
00106 T *operator[](int i) { return &image[i*width]; }
00108 void operator=(Image<T> &src);
00109 };
00110
00111 #endif // TPIMAGE_H