7 #include <opencv2/core.hpp>
19 static const char* startTag;
20 static const char* endTag;
21 static const int startTagSize;
22 static const int endTagSize;
24 static const int maxTitleSize;
25 static const int maxDescSize;
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;
35 void setTitle(std::string);
36 void setDescription(std::string);
37 void setType(targetType::types);
42 std::string getTitle()
const;
43 std::string getDescription()
const;
44 targetType::types getType()
const;
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);
67 targetType::types type;