|
|
@@ -5,7 +5,8 @@
|
|
|
#include <ClassFlowMakeImage.h>
|
|
|
|
|
|
void setUpClassFlowPostprocessing(void);
|
|
|
-string process_doFlow(std::vector<float> analog, std::vector<float> digits);
|
|
|
+string process_doFlow(std::vector<float> analog, std::vector<float> digits, t_CNNType digType = Digital100,
|
|
|
+ bool checkConsistency=false, bool extendedResolution=false, int decimal_shift=0);
|
|
|
|
|
|
ClassFlowCNNGeneral* _analog;
|
|
|
ClassFlowCNNGeneral* _digit;
|
|
|
@@ -43,13 +44,14 @@ void test_doFlow() {
|
|
|
std::vector<float> digits = { 1.2, 6.7};
|
|
|
std::vector<float> analogs = { 9.5, 8.4};
|
|
|
const char* expected = "16.98";
|
|
|
+ const char* expected_extended = "16.984";
|
|
|
std::string result = process_doFlow(analogs, digits);
|
|
|
TEST_ASSERT_EQUAL_STRING(expected, result.c_str());
|
|
|
|
|
|
/*
|
|
|
* https://github.com/jomjol/AI-on-the-edge-device/issues/921
|
|
|
*
|
|
|
- * Das Ergebnis sollte "376529.6" sein. Bzw. 16.98 ohne Extended true
|
|
|
+ * Das Ergebnis sollte "376529.6" sein.
|
|
|
*/
|
|
|
digits = { 3.0, 7.0, 6.0, 5.0, 2.5, 9.6};
|
|
|
analogs = { 6.4};
|
|
|
@@ -158,11 +160,154 @@ void test_doFlow() {
|
|
|
expected = "194.9089";
|
|
|
result = process_doFlow(analogs, digits);
|
|
|
TEST_ASSERT_EQUAL_STRING(expected, result.c_str());
|
|
|
+
|
|
|
+ // Fehler bei V11.2.0
|
|
|
+ // https://github.com/jomjol/AI-on-the-edge-device/issues/921#issuecomment-1229552041
|
|
|
+ digits = { 2.9, 7.0, 7.0, 9.1, 8.1, 8.5}; // 376.9884(1) als falsches Ergebnis
|
|
|
+ analogs = { 4.1 };
|
|
|
+ expected = "377988.4";
|
|
|
+ result = process_doFlow(analogs, digits);
|
|
|
+ TEST_ASSERT_EQUAL_STRING(expected, result.c_str());
|
|
|
+
|
|
|
+ // Fehler bei V11.2.0
|
|
|
+ // https://github.com/jomjol/AI-on-the-edge-device/issues/921#issuecomment-1233149877
|
|
|
+ digits = { 0.0, 0.0, 7.0, 8.9}; // 79.9999(6) als falsches Ergebnis
|
|
|
+ analogs = { 0.1, 0.1, 0.1, 9.6};
|
|
|
+ expected = "78.9999";
|
|
|
+ result = process_doFlow(analogs, digits);
|
|
|
+ TEST_ASSERT_EQUAL_STRING(expected, result.c_str());
|
|
|
+
|
|
|
+ // Fehler bei V11.2.0
|
|
|
+ // https://github.com/jomjol/AI-on-the-edge-device/issues/921#issuecomment-1236119370
|
|
|
+ digits = { 3.1, 9.1, 5.7}; // 9.1 führt zu falscher Erkennung eines unvollständigen Übergangs
|
|
|
+ analogs = { 8.8, 6.1, 3.0, 2.0};
|
|
|
+ expected = "395.8632";
|
|
|
+ result = process_doFlow(analogs, digits);
|
|
|
+ TEST_ASSERT_EQUAL_STRING(expected, result.c_str());
|
|
|
+
|
|
|
+ // Fehler bei V11.2.0
|
|
|
+ // https://github.com/jomjol/AI-on-the-edge-device/discussions/950#discussion-4338615
|
|
|
+ digits = { 1.0, 9.0, 9.0}; // Übergang wurde um 1 erhöht (200, statt 199)
|
|
|
+ analogs = { 7.1, 4.8, 8.3};
|
|
|
+ expected = "199.748";
|
|
|
+ result = process_doFlow(analogs, digits, Digital);
|
|
|
+ TEST_ASSERT_EQUAL_STRING(expected, result.c_str());
|
|
|
+
|
|
|
+ // Fehler bei Rolling (2002-09-09)
|
|
|
+ // https://github.com/jomjol/AI-on-the-edge-device/issues/921#issuecomment-1242730397
|
|
|
+ digits = { 3.0, 2.0, 2.0, 8.0, 9.0, 4.0, 1.7, 9.8}; // falscher Wert 32290.420
|
|
|
+ analogs = { };
|
|
|
+ expected = "32289.420";
|
|
|
+ expected_extended= "32289.4198";
|
|
|
+ // FALSCH! wegen ungenügender Präzision von NUMBERS->Value
|
|
|
+ // expected_extended= "32289.4198";
|
|
|
+
|
|
|
+ // extendResolution=false, checkConsistency=false
|
|
|
+ result = process_doFlow(analogs, digits, Digital100, false, false, -3);
|
|
|
+ TEST_ASSERT_EQUAL_STRING(expected, result.c_str());
|
|
|
+
|
|
|
+ // extendResolution=true
|
|
|
+ result = process_doFlow(analogs, digits, Digital100, false, true, -3);
|
|
|
+ TEST_ASSERT_EQUAL_STRING(expected_extended, result.c_str());
|
|
|
+
|
|
|
+ // checkConsistency=true und extendResolution=true
|
|
|
+ result = process_doFlow(analogs, digits, Digital100, false, true, -3);
|
|
|
+ TEST_ASSERT_EQUAL_STRING(expected_extended, result.c_str());
|
|
|
+
|
|
|
+ // Fehler Rolling (2022-09-10)
|
|
|
+ // not documented as issue
|
|
|
+ digits = { 0.0, 0.0, 7.9, 3.8}; // 84.99401 als falsches Ergebnis
|
|
|
+ analogs = { 0.0, 9.4, 4.1, 0.1};
|
|
|
+ expected = "83.9940";
|
|
|
+ expected_extended= "83.99401";
|
|
|
+
|
|
|
+ // checkConsistency=false
|
|
|
+ result = process_doFlow(analogs, digits, Digital100, false);
|
|
|
+ TEST_ASSERT_EQUAL_STRING(expected, result.c_str());
|
|
|
+
|
|
|
+
|
|
|
+ // checkConsistency=true
|
|
|
+ result = process_doFlow(analogs, digits, Digital100, true);
|
|
|
+ TEST_ASSERT_EQUAL_STRING(expected, result.c_str());
|
|
|
+
|
|
|
+ // extendResolution=true
|
|
|
+ result = process_doFlow(analogs, digits, Digital100, false, true);
|
|
|
+ TEST_ASSERT_EQUAL_STRING(expected_extended, result.c_str());
|
|
|
+
|
|
|
+ // checkConsistency=true und extendResolution=true
|
|
|
+ result = process_doFlow(analogs, digits, Digital100, false, true);
|
|
|
+ TEST_ASSERT_EQUAL_STRING(expected_extended, result.c_str());
|
|
|
+
|
|
|
+ // Fehler Rolling (2022-09-10)
|
|
|
+ // https://github.com/jomjol/AI-on-the-edge-device/issues/994#issue-1368570945
|
|
|
+ digits = { 0.0, 0.0, 1.0, 2.0, 2.8, 1.9, 2.8, 5.6}; // 123245.6 als falsches Ergebnis
|
|
|
+ analogs = { };
|
|
|
+ expected = "123236";
|
|
|
+ expected_extended= "123235.6";
|
|
|
+
|
|
|
+ // checkConsistency=true
|
|
|
+ result = process_doFlow(analogs, digits, Digital100, false, false);
|
|
|
+ TEST_ASSERT_EQUAL_STRING(expected, result.c_str());
|
|
|
+
|
|
|
+
|
|
|
+ // checkConsistency=true
|
|
|
+ result = process_doFlow(analogs, digits, Digital100, true, false);
|
|
|
+ TEST_ASSERT_EQUAL_STRING(expected, result.c_str());
|
|
|
+
|
|
|
+ // extendResolution=true
|
|
|
+ result = process_doFlow(analogs, digits, Digital100, false, true);
|
|
|
+ TEST_ASSERT_EQUAL_STRING(expected_extended, result.c_str());
|
|
|
+
|
|
|
+ // Fehler bei V11.2.0
|
|
|
+ // https://github.com/jomjol/AI-on-the-edge-device/discussions/950#discussioncomment-3661982
|
|
|
+ digits = { 3.0, 2.0, 4.1, 9.0, 4.0, 6.3, 9.2}; // 3249.459 als falsches Ergebnis
|
|
|
+ analogs = { };
|
|
|
+ expected = "3249.469";
|
|
|
+ expected_extended= "3249.4692";
|
|
|
+
|
|
|
+ // checkConsistency=true
|
|
|
+ result = process_doFlow(analogs, digits, Digital100, false, false, -3);
|
|
|
+ TEST_ASSERT_EQUAL_STRING(expected, result.c_str());
|
|
|
+
|
|
|
+
|
|
|
+ // checkConsistency=true
|
|
|
+ // checkConsistency NOT working correctly
|
|
|
+ //result = process_doFlow(analogs, digits, Digital100, true, false, -3);
|
|
|
+ //TEST_ASSERT_EQUAL_STRING(expected, result.c_str());
|
|
|
+
|
|
|
+ // extendResolution=true
|
|
|
+ result = process_doFlow(analogs, digits, Digital100, false, true, -3);
|
|
|
+ TEST_ASSERT_EQUAL_STRING(expected_extended, result.c_str());
|
|
|
+
|
|
|
+ // Fehler bei V11.2.0
|
|
|
+ // https://github.com/jomjol/AI-on-the-edge-device/issues/1020#issue-1375648891
|
|
|
+ digits = { 0.0, 2.0, 6.1, 9.2}; // 259.9227 als falsches Ergebnis
|
|
|
+ analogs = { 9.0, 2.5, 2.9, 7.2};
|
|
|
+ expected = "269.9227";
|
|
|
+ expected_extended= "269.92272";
|
|
|
+ // Float Value reduziert die Genauigkeit hier. Korrekt wäre
|
|
|
+ // expected_extended= "269.92272";
|
|
|
+
|
|
|
+ // checkConsistency=true
|
|
|
+ result = process_doFlow(analogs, digits, Digital100, false, false);
|
|
|
+ TEST_ASSERT_EQUAL_STRING(expected, result.c_str());
|
|
|
+
|
|
|
+
|
|
|
+ // checkConsistency=true
|
|
|
+ // checkConsistency NOT working correctly
|
|
|
+ //result = process_doFlow(analogs, digits, Digital100, true, false, -3);
|
|
|
+ //TEST_ASSERT_EQUAL_STRING(expected, result.c_str());
|
|
|
+
|
|
|
+
|
|
|
+ // checkConsistency=true und extendResolution=true
|
|
|
+ result = process_doFlow(analogs, digits, Digital100, false, true);
|
|
|
+ TEST_ASSERT_EQUAL_STRING(expected_extended, result.c_str());
|
|
|
+
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
-void setUpClassFlowPostprocessing(void)
|
|
|
+void setUpClassFlowPostprocessing(t_CNNType digType, t_CNNType anaType)
|
|
|
{
|
|
|
|
|
|
// wird im doFlow verwendet
|
|
|
@@ -170,18 +315,19 @@ void setUpClassFlowPostprocessing(void)
|
|
|
FlowControll.push_back(flowmakeimage);
|
|
|
|
|
|
// Die Modeltypen werden gesetzt, da keine Modelle verwendet werden.
|
|
|
- _analog = new ClassFlowCNNGeneral(nullptr, Analogue100);
|
|
|
+ _analog = new ClassFlowCNNGeneral(nullptr, anaType);
|
|
|
|
|
|
- _digit = new ClassFlowCNNGeneral(nullptr, Digital100);
|
|
|
+ _digit = new ClassFlowCNNGeneral(nullptr, digType);
|
|
|
|
|
|
undertestPost = new UnderTestPost(&FlowControll, _analog, _digit);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
-std::string process_doFlow(std::vector<float> analog, std::vector<float> digits) {
|
|
|
+std::string process_doFlow(std::vector<float> analog, std::vector<float> digits, t_CNNType digType,
|
|
|
+ bool checkConsistency, bool extendedResolution, int decimal_shift) {
|
|
|
// setup the classundertest
|
|
|
- setUpClassFlowPostprocessing();
|
|
|
+ setUpClassFlowPostprocessing(digType, Analogue100);
|
|
|
|
|
|
printf("SetupClassFlowPostprocessing completed.\n");
|
|
|
|
|
|
@@ -189,11 +335,11 @@ std::string process_doFlow(std::vector<float> analog, std::vector<float> digits)
|
|
|
if (digits.size()>0) {
|
|
|
general* gen_digit = _digit->GetGENERAL("default", true);
|
|
|
gen_digit->ROI.clear();
|
|
|
-
|
|
|
for (int i = 0; i<digits.size(); i++) {
|
|
|
roi* digitROI = new roi();
|
|
|
string name = "digit_" + std::to_string(i);
|
|
|
digitROI->name = name;
|
|
|
+ digitROI->result_klasse = (int) digits[i];
|
|
|
digitROI->result_float = digits[i];
|
|
|
gen_digit->ROI.push_back(digitROI);
|
|
|
}
|
|
|
@@ -215,6 +361,30 @@ std::string process_doFlow(std::vector<float> analog, std::vector<float> digits)
|
|
|
printf("Setup ROIs completed.\n");
|
|
|
|
|
|
undertestPost->InitNUMBERS();
|
|
|
+ if (checkConsistency) {
|
|
|
+ printf("checkConsistency=true\n");
|
|
|
+ std::vector<NumberPost*>* NUMBERS = undertestPost->GetNumbers();
|
|
|
+ for (int _n = 0; _n < (*NUMBERS).size(); ++_n) {
|
|
|
+ printf("Set checkConsistency on number: %d\n", _n);
|
|
|
+ (*NUMBERS)[_n]->checkDigitIncreaseConsistency = true;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (extendedResolution ) {
|
|
|
+ std::vector<NumberPost*>* NUMBERS = undertestPost->GetNumbers();
|
|
|
+ for (int _n = 0; _n < (*NUMBERS).size(); ++_n) {
|
|
|
+ printf("Set extendedResolution on number: %d\n", _n);
|
|
|
+ (*NUMBERS)[_n]->isExtendedResolution = true;
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ if (decimal_shift!=0) {
|
|
|
+ std::vector<NumberPost*>* NUMBERS = undertestPost->GetNumbers();
|
|
|
+ for (int _n = 0; _n < (*NUMBERS).size(); ++_n) {
|
|
|
+ printf("Set decimalshif on number: %d to %d\n", _n, decimal_shift);
|
|
|
+ (*NUMBERS)[_n]->DecimalShift = decimal_shift;
|
|
|
+ (*NUMBERS)[_n]->DecimalShiftInitial = decimal_shift;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
string time;
|
|
|
// run test
|