ClassFlowDigit.cpp 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420
  1. #include "ClassFlowDigit.h"
  2. //#include "CFindTemplate.h"
  3. //#include "CTfLiteClass.h"
  4. // #define OHNETFLITE
  5. #ifndef OHNETFLITE
  6. #include "CTfLiteClass.h"
  7. #endif
  8. // #include "bitmap_image.hpp"
  9. #include "ClassLogFile.h"
  10. static const char* TAG = "flow_digital";
  11. void ClassFlowDigit::SetInitialParameter(void)
  12. {
  13. string cnnmodelfile = "";
  14. modelxsize = 1;
  15. modelysize = 1;
  16. ListFlowControll = NULL;
  17. previousElement = NULL;
  18. SaveAllFiles = false;
  19. disabled = false;
  20. DecimalShift = 0;
  21. DecimalShiftEnabled = false;
  22. }
  23. ClassFlowDigit::ClassFlowDigit() : ClassFlowImage(TAG)
  24. {
  25. SetInitialParameter();
  26. }
  27. ClassFlowDigit::ClassFlowDigit(std::vector<ClassFlow*>* lfc) : ClassFlowImage(lfc, TAG)
  28. {
  29. SetInitialParameter();
  30. ListFlowControll = lfc;
  31. for (int i = 0; i < ListFlowControll->size(); ++i)
  32. {
  33. if (((*ListFlowControll)[i])->name().compare("ClassFlowAlignment") == 0)
  34. {
  35. flowpostalignment = (ClassFlowAlignment*) (*ListFlowControll)[i];
  36. }
  37. }
  38. }
  39. ClassFlowDigit::ClassFlowDigit(std::vector<ClassFlow*>* lfc, ClassFlow *_prev) : ClassFlowImage(lfc, _prev, TAG)
  40. {
  41. SetInitialParameter();
  42. ListFlowControll = lfc;
  43. previousElement = _prev;
  44. for (int i = 0; i < ListFlowControll->size(); ++i)
  45. {
  46. if (((*ListFlowControll)[i])->name().compare("ClassFlowAlignment") == 0)
  47. {
  48. flowpostalignment = (ClassFlowAlignment*) (*ListFlowControll)[i];
  49. }
  50. }
  51. }
  52. string ClassFlowDigit::getReadout(int _digit = 0)
  53. {
  54. string rst = "";
  55. for (int i = 0; i < DIGIT[_digit]->ROI.size(); ++i)
  56. {
  57. if (DIGIT[_digit]->ROI[i]->resultklasse == 10)
  58. rst = rst + "N";
  59. else
  60. rst = rst + std::to_string(DIGIT[_digit]->ROI[i]->resultklasse);
  61. }
  62. return rst;
  63. }
  64. bool ClassFlowDigit::ReadParameter(FILE* pfile, string& aktparamgraph)
  65. {
  66. std::vector<string> zerlegt;
  67. aktparamgraph = trim(aktparamgraph);
  68. if (aktparamgraph.size() == 0)
  69. if (!this->GetNextParagraph(pfile, aktparamgraph))
  70. return false;
  71. printf("aktparamgraph: %s\n", aktparamgraph.c_str());
  72. if ((aktparamgraph.compare(0, 7, "[Digits") != 0) && (aktparamgraph.compare(0, 8, ";[Digits") != 0)) // Paragraph passt nich zu MakeImage
  73. return false;
  74. int _pospkt = aktparamgraph.find_first_of(".");
  75. int _posklammerzu = aktparamgraph.find_first_of("]");
  76. if (_pospkt > -1)
  77. NameDigit = aktparamgraph.substr(_pospkt+1, _posklammerzu - _pospkt-1);
  78. else
  79. NameDigit = "";
  80. printf("Name Digit: %s\n", NameDigit.c_str());
  81. if (aktparamgraph[0] == ';')
  82. {
  83. disabled = true;
  84. while (getNextLine(pfile, &aktparamgraph) && !isNewParagraph(aktparamgraph));
  85. printf("[Digits] is disabled !!!\n");
  86. return true;
  87. }
  88. while (getNextLine(pfile, &aktparamgraph) && !isNewParagraph(aktparamgraph))
  89. {
  90. zerlegt = this->ZerlegeZeile(aktparamgraph);
  91. if ((zerlegt[0] == "LogImageLocation") && (zerlegt.size() > 1))
  92. {
  93. LogImageLocation = "/sdcard" + zerlegt[1];
  94. isLogImage = true;
  95. }
  96. if ((zerlegt[0] == "Model") && (zerlegt.size() > 1))
  97. {
  98. cnnmodelfile = zerlegt[1];
  99. }
  100. if ((zerlegt[0] == "ModelInputSize") && (zerlegt.size() > 2))
  101. {
  102. modelxsize = std::stoi(zerlegt[1]);
  103. modelysize = std::stoi(zerlegt[2]);
  104. }
  105. if (zerlegt.size() >= 5)
  106. {
  107. digit* _digit = GetDIGIT(zerlegt[0], true);
  108. roi* neuroi = _digit->ROI[_digit->ROI.size()-1];
  109. neuroi->posx = std::stoi(zerlegt[1]);
  110. neuroi->posy = std::stoi(zerlegt[2]);
  111. neuroi->deltax = std::stoi(zerlegt[3]);
  112. neuroi->deltay = std::stoi(zerlegt[4]);
  113. neuroi->resultklasse = -1;
  114. neuroi->image = NULL;
  115. neuroi->image_org = NULL;
  116. }
  117. if ((toUpper(zerlegt[0]) == "SAVEALLFILES") && (zerlegt.size() > 1))
  118. {
  119. if (toUpper(zerlegt[1]) == "TRUE")
  120. SaveAllFiles = true;
  121. }
  122. }
  123. for (int _dig = 0; _dig < DIGIT.size(); ++_dig)
  124. for (int i = 0; i < DIGIT[_dig]->ROI.size(); ++i)
  125. {
  126. DIGIT[_dig]->ROI[i]->image = new CImageBasis(modelxsize, modelysize, 3);
  127. DIGIT[_dig]->ROI[i]->image_org = new CImageBasis(DIGIT[_dig]->ROI[i]->deltax, DIGIT[_dig]->ROI[i]->deltay, 3);
  128. }
  129. return true;
  130. }
  131. digit* ClassFlowDigit::FindDIGIT(string _name_number)
  132. {
  133. for (int i = 0; i < DIGIT.size(); ++i)
  134. {
  135. if (DIGIT[i]->name == _name_number)
  136. return DIGIT[i];
  137. }
  138. return NULL;
  139. }
  140. digit* ClassFlowDigit::GetDIGIT(string _name, bool _create = true)
  141. {
  142. string _digit, _roi;
  143. int _pospunkt = _name.find_first_of(".");
  144. // printf("Name: %s, Pospunkt: %d\n", _name.c_str(), _pospunkt);
  145. if (_pospunkt > -1)
  146. {
  147. _digit = _name.substr(0, _pospunkt);
  148. _roi = _name.substr(_pospunkt+1, _name.length() - _pospunkt - 1);
  149. }
  150. else
  151. {
  152. _digit = "default";
  153. _roi = _name;
  154. }
  155. digit *_ret = NULL;
  156. for (int i = 0; i < DIGIT.size(); ++i)
  157. {
  158. if (DIGIT[i]->name == _digit)
  159. _ret = DIGIT[i];
  160. }
  161. if (!_create) // nicht gefunden und soll auch nicht erzeugt werden, ggf. geht eine NULL zurück
  162. return _ret;
  163. if (_ret == NULL)
  164. {
  165. _ret = new digit;
  166. _ret->name = _digit;
  167. DIGIT.push_back(_ret);
  168. }
  169. roi* neuroi = new roi;
  170. neuroi->name = _roi;
  171. _ret->ROI.push_back(neuroi);
  172. printf("GetDIGIT - digit %s - roi %s\n", _digit.c_str(), _roi.c_str());
  173. return _ret;
  174. }
  175. string ClassFlowDigit::getHTMLSingleStep(string host)
  176. {
  177. string result, zw;
  178. std::vector<HTMLInfo*> htmlinfo;
  179. result = "<p>Found ROIs: </p> <p><img src=\"" + host + "/img_tmp/alg_roi.jpg\"></p>\n";
  180. result = result + "Digital Counter: <p> ";
  181. htmlinfo = GetHTMLInfo();
  182. for (int i = 0; i < htmlinfo.size(); ++i)
  183. {
  184. if (htmlinfo[i]->val == 10)
  185. zw = "NaN";
  186. else
  187. {
  188. zw = to_string((int) htmlinfo[i]->val);
  189. }
  190. result = result + "<img src=\"" + host + "/img_tmp/" + htmlinfo[i]->filename + "\"> " + zw;
  191. delete htmlinfo[i];
  192. }
  193. htmlinfo.clear();
  194. return result;
  195. }
  196. bool ClassFlowDigit::doFlow(string time)
  197. {
  198. if (disabled)
  199. return true;
  200. if (!doAlignAndCut(time)){
  201. return false;
  202. };
  203. doNeuralNetwork(time);
  204. RemoveOldLogs();
  205. return true;
  206. }
  207. bool ClassFlowDigit::doAlignAndCut(string time)
  208. {
  209. if (disabled)
  210. return true;
  211. CAlignAndCutImage *caic = flowpostalignment->GetAlignAndCutImage();
  212. for (int _dig = 0; _dig < DIGIT.size(); ++_dig)
  213. {
  214. printf("DIGIT[_dig]->ROI.size() %d\n", DIGIT[_dig]->ROI.size());
  215. for (int i = 0; i < DIGIT[_dig]->ROI.size(); ++i)
  216. {
  217. printf("DigitalDigit %d - Align&Cut\n", i);
  218. caic->CutAndSave(DIGIT[_dig]->ROI[i]->posx, DIGIT[_dig]->ROI[i]->posy, DIGIT[_dig]->ROI[i]->deltax, DIGIT[_dig]->ROI[i]->deltay, DIGIT[_dig]->ROI[i]->image_org);
  219. if (SaveAllFiles)
  220. {
  221. if (DIGIT[_dig]->name == "default")
  222. DIGIT[_dig]->ROI[i]->image_org->SaveToFile(FormatFileName("/sdcard/img_tmp/" + DIGIT[_dig]->ROI[i]->name + ".jpg"));
  223. else
  224. DIGIT[_dig]->ROI[i]->image_org->SaveToFile(FormatFileName("/sdcard/img_tmp/" + DIGIT[_dig]->name + "_" + DIGIT[_dig]->ROI[i]->name + ".jpg"));
  225. }
  226. DIGIT[_dig]->ROI[i]->image_org->Resize(modelxsize, modelysize, DIGIT[_dig]->ROI[i]->image);
  227. if (SaveAllFiles)
  228. {
  229. if (DIGIT[_dig]->name == "default")
  230. DIGIT[_dig]->ROI[i]->image->SaveToFile(FormatFileName("/sdcard/img_tmp/" + DIGIT[_dig]->ROI[i]->name + ".bmp"));
  231. else
  232. DIGIT[_dig]->ROI[i]->image->SaveToFile(FormatFileName("/sdcard/img_tmp/" + DIGIT[_dig]->name + "_" + DIGIT[_dig]->ROI[i]->name + ".bmp"));
  233. }
  234. }
  235. }
  236. return true;
  237. }
  238. bool ClassFlowDigit::doNeuralNetwork(string time)
  239. {
  240. if (disabled)
  241. return true;
  242. string logPath = CreateLogFolder(time);
  243. #ifndef OHNETFLITE
  244. CTfLiteClass *tflite = new CTfLiteClass;
  245. string zwcnn = FormatFileName("/sdcard" + cnnmodelfile);
  246. printf(zwcnn.c_str());printf("\n");
  247. if (!tflite->LoadModel(zwcnn)) {
  248. printf("Can't read model file /sdcard%s\n", cnnmodelfile.c_str());
  249. delete tflite;
  250. return false;
  251. }
  252. tflite->MakeAllocate();
  253. #endif
  254. for (int _dig = 0; _dig < DIGIT.size(); ++_dig)
  255. for (int i = 0; i < DIGIT[_dig]->ROI.size(); ++i)
  256. {
  257. printf("DigitalDigit %d - TfLite\n", i);
  258. DIGIT[_dig]->ROI[i]->resultklasse = 0;
  259. #ifndef OHNETFLITE
  260. DIGIT[_dig]->ROI[i]->resultklasse = tflite->GetClassFromImageBasis(DIGIT[_dig]->ROI[i]->image);
  261. #endif
  262. printf("Result Digit%i: %d\n", i, DIGIT[_dig]->ROI[i]->resultklasse);
  263. if (isLogImage)
  264. {
  265. LogImage(logPath, DIGIT[_dig]->ROI[i]->name, NULL, &DIGIT[_dig]->ROI[i]->resultklasse, time, DIGIT[_dig]->ROI[i]->image_org);
  266. }
  267. }
  268. #ifndef OHNETFLITE
  269. delete tflite;
  270. #endif
  271. return true;
  272. }
  273. void ClassFlowDigit::DrawROI(CImageBasis *_zw)
  274. {
  275. for (int _dig = 0; _dig < DIGIT.size(); ++_dig)
  276. for (int i = 0; i < DIGIT[_dig]->ROI.size(); ++i)
  277. _zw->drawRect(DIGIT[_dig]->ROI[i]->posx, DIGIT[_dig]->ROI[i]->posy, DIGIT[_dig]->ROI[i]->deltax, DIGIT[_dig]->ROI[i]->deltay, 0, 0, (255 - _dig*100), 2);
  278. }
  279. std::vector<HTMLInfo*> ClassFlowDigit::GetHTMLInfo()
  280. {
  281. std::vector<HTMLInfo*> result;
  282. for (int _dig = 0; _dig < DIGIT.size(); ++_dig)
  283. for (int i = 0; i < DIGIT[_dig]->ROI.size(); ++i)
  284. {
  285. if (DIGIT[_dig]->name == "default")
  286. DIGIT[_dig]->ROI[i]->image->SaveToFile(FormatFileName("/sdcard/img_tmp/" + DIGIT[_dig]->ROI[i]->name + ".bmp"));
  287. else
  288. DIGIT[_dig]->ROI[i]->image->SaveToFile(FormatFileName("/sdcard/img_tmp/" + DIGIT[_dig]->name + "_" + DIGIT[_dig]->ROI[i]->name + ".bmp"));
  289. HTMLInfo *zw = new HTMLInfo;
  290. if (DIGIT[_dig]->name == "default")
  291. {
  292. zw->filename = DIGIT[_dig]->ROI[i]->name + ".bmp";
  293. zw->filename_org = DIGIT[_dig]->ROI[i]->name + ".jpg";
  294. }
  295. else
  296. {
  297. zw->filename = DIGIT[_dig]->name + "_" + DIGIT[_dig]->ROI[i]->name + ".bmp";
  298. zw->filename_org = DIGIT[_dig]->name + "_" + DIGIT[_dig]->ROI[i]->name + ".jpg";
  299. }
  300. zw->val = DIGIT[_dig]->ROI[i]->resultklasse;
  301. zw->image = DIGIT[_dig]->ROI[i]->image;
  302. zw->image_org = DIGIT[_dig]->ROI[i]->image_org;
  303. result.push_back(zw);
  304. }
  305. return result;
  306. }
  307. int ClassFlowDigit::getAnzahlDIGIT()
  308. {
  309. return DIGIT.size();
  310. }
  311. string ClassFlowDigit::getNameDIGIT(int _digit)
  312. {
  313. if (_digit < DIGIT.size())
  314. return DIGIT[_digit]->name;
  315. return "DIGIT DOES NOT EXIST";
  316. }
  317. digit* ClassFlowDigit::GetDIGIT(int _digit)
  318. {
  319. if (_digit < DIGIT.size())
  320. return DIGIT[_digit];
  321. return NULL;
  322. }
  323. void ClassFlowDigit::UpdateNameNumbers(std::vector<std::string> *_name_numbers)
  324. {
  325. for (int _dig = 0; _dig < DIGIT.size(); _dig++)
  326. {
  327. std::string _name = DIGIT[_dig]->name;
  328. bool found = false;
  329. for (int i = 0; i < (*_name_numbers).size(); ++i)
  330. {
  331. if ((*_name_numbers)[i] == _name)
  332. found = true;
  333. }
  334. if (!found)
  335. (*_name_numbers).push_back(_name);
  336. }
  337. }