HSImage
Hyperspectral Image Interface Library for ENVI-BIL image files
 All Classes Functions Variables Typedefs Groups Pages
colormap.h
1 #ifndef COLORMAP_H
2 #define COLORMAP_H
3 
4 #include <fstream>
5 #include <vector>
6 #include <stdint.h>
7 #include <string>
8 
9 #include "annEnums.h"
10 #include "target.h"
11 
12 
13 
14 struct versionData{
15  uint32_t _major;
16  uint32_t _minor;
17 
18  versionData(uint32_t _majorV, uint32_t _minorV){
19  this->_major = _majorV;
20  this->_minor = _minorV;
21  }
22  //default constructor
23  versionData(){
24  this->_major = 0;
25  this->_minor = 0;
26  }
27  //default destructor
28  ~versionData(){
29  }
30  //default copy constructor
31  versionData(const versionData& other) :
32  _major(other._major), _minor(other._minor){}
33  //overload the is equal operator
34  bool operator==(const versionData &other) const{
35  if(this->_major != other._major){return false;}
36  if(this->_minor != other._minor){return false;}
37  return true;
38  }
39  bool operator!=(const versionData &other) const{
40  return !(*this==other);
41  }
42 
43 };
44 
45 
46 class colorMap
47 {
48  //future functionality: info to upgrade the version data
49  //(mapping previous definitions to current version))
50 
51 
52 public:
53  static const char* startTag;
54  static const char* endTag;
55  static const int startTagSize;
56  static const int endTagSize;
57 
58  colorMap();
59  colorMap(uint32_t, uint32_t);
60  ~colorMap();
61 
62  bool operator==(const colorMap &other) const;
63  bool operator!=(const colorMap &other) const;
64 
65  // const QMetaObject colorHMO; //meta object for colorMapHierarchy enum
66 
67  //managing target definitions
68  void addTarget(target);
69  void addTarget(target[], int);
70  void addTarget(std::vector<target>);
71  void removeTarget(const target &);
72  int findTargetInd(const target &);
73 
74  static bool greaterVersion(const colorMap &cMap1, const colorMap &cMap2);
75 
76  //Set, Get
77  void setMajorV(uint32_t);
78  void setMinorV(uint32_t);
79  uint32_t getMajorV() const;
80  uint32_t getMinorV() const;
81  versionData getVersion() const;
82  int getNumTargets(targetType::types) const;
83 
84  std::vector<target> const * getTargetList(targetType::types) const;
85  void setTargetVector(const std::vector<target> &);
86 
87  //Parsing the settings file
88  void toFile(std::fstream &);
89  bool fromFile(std::fstream &fs);
90  bool isEnd(std::fstream &);
91  static bool nextColorMapExist(std::fstream &fs);
92 
93 
94 
95 
96 private:
97 
98  struct versionData version;
99 
100  std::vector<target> targetClasses;
101  std::vector<target> targetInstances;
102 
103 };
104 
105 
106 
107 
108 
109 
110 #endif // COLORMAP_H