HSImage
Hyperspectral Image Interface Library for ENVI-BIL image files
 All Classes Functions Variables Typedefs Groups Pages
target.h
1 #ifndef TARGET_H
2 #define TARGET_H
3 
4 #include <fstream>
5 #include <memory>
6 
7 #include <opencv2/core.hpp>
8 
9 #include "stdint.h"
10 #include "annEnums.h"
11 
12 
13 
14 class target
15 {
16 
17 public:
18  //Data for parsing
19  static const char* startTag; //data to begin a target definition in a file
20  static const char* endTag; //data to end a target definition in a file
21  static const int startTagSize;
22  static const int endTagSize;
23 
24  static const int maxTitleSize;
25  static const int maxDescSize;
26 
27  target();
28  ~target();
29  target(uint8_t, uint8_t, uint8_t,
30  std::string titleIn = "Test",
31  targetType::types typeIn = targetType::targetClass);
32  bool operator ==(const target&) const;
33  bool operator !=(const target&) const;
34 
35  void setTitle(std::string);
36  void setDescription(std::string);
37  void setType(targetType::types);
38  void setR(uint8_t);
39  void setG(uint8_t);
40  void setB(uint8_t);
41 
42  std::string getTitle() const;
43  std::string getDescription() const;
44  targetType::types getType() const;
45  uint8_t getR() const;
46  uint8_t getG() const;
47  uint8_t getB() const;
48 
49 
50  //parsing
51  void toFile(std::fstream &);
52  bool fromFile(std::fstream &);
53  static bool nextTargetExist(std::fstream &);
54  std::string parseTitle(std::fstream, std::fstream::pos_type);
55 
56 
57 
58 private:
59 
60  char* title; //identifier for the target
61  int titleLen; //length of the title string
62  char* description;//short description for the target
63  int descLen; //length of the description string
64  uint8_t r;
65  uint8_t g;
66  uint8_t b;
67  targetType::types type; //Whether the target is a class, instance, or other
68 
69 
70 };
71 
72 
73 
74 #endif // TARGET_H