mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-10 05:26:52 +03:00
v6.2.2
This commit is contained in:
@@ -41,8 +41,9 @@ If you would like to support the developer with a cup of coffee you can do that
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
##### 6.2.1 Image Processing in Memory - (2021-03-08)
|
##### 6.2.2 Image Processing in Memory - (2021-03-10)
|
||||||
|
|
||||||
|
* NEW 6.2.2: bug fixing
|
||||||
* NEW 6.2.1: Changed brightness and contrast to default if not enabled (resolves to bright images)
|
* NEW 6.2.1: Changed brightness and contrast to default if not enabled (resolves to bright images)
|
||||||
* Determination of fixed illumination settings during startup - speed up of 5s in each run
|
* Determination of fixed illumination settings during startup - speed up of 5s in each run
|
||||||
* Update digital CNN to v8.1.1 (additional digital images trained)
|
* Update digital CNN to v8.1.1 (additional digital images trained)
|
||||||
|
|||||||
@@ -368,7 +368,7 @@ bool ClassFlowPostProcessing::doFlow(string zwtime)
|
|||||||
|
|
||||||
if (useMaxRateValue && (abs(Value - PreValue) > MaxRateValue))
|
if (useMaxRateValue && (abs(Value - PreValue) > MaxRateValue))
|
||||||
{
|
{
|
||||||
ErrorMessageText = ErrorMessageText + "Rate too high - Returned old value - read value: " + zwvalue + " - checked value: " + std::to_string(Value) + " ";
|
ErrorMessageText = ErrorMessageText + "Rate too high - Returned old value - read value: " + zwvalue + " - checked value: " + RundeOutput(Value, AnzahlAnalog - DecimalShift) + " ";
|
||||||
Value = PreValue;
|
Value = PreValue;
|
||||||
zwvalue = RundeOutput(Value, AnzahlAnalog - DecimalShift);
|
zwvalue = RundeOutput(Value, AnzahlAnalog - DecimalShift);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
const char* GIT_REV="4537725";
|
const char* GIT_REV="5cc873a";
|
||||||
const char* GIT_TAG="v6.2.0";
|
const char* GIT_TAG="";
|
||||||
const char* GIT_BRANCH="master";
|
const char* GIT_BRANCH="rolling";
|
||||||
const char* BUILD_TIME="2021-03-09 21:07";
|
const char* BUILD_TIME="2021-03-10 21:09";
|
||||||
@@ -13,7 +13,7 @@ extern "C"
|
|||||||
#include "Helper.h"
|
#include "Helper.h"
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
|
|
||||||
const char* GIT_BASE_BRANCH = "master - v6.2.1 - 2020-03-09";
|
const char* GIT_BASE_BRANCH = "master - v6.2.2 - 2020-03-10";
|
||||||
|
|
||||||
|
|
||||||
const char* git_base_branch(void)
|
const char* git_base_branch(void)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
const char* GIT_REV="4537725";
|
const char* GIT_REV="5cc873a";
|
||||||
const char* GIT_TAG="v6.2.0";
|
const char* GIT_TAG="";
|
||||||
const char* GIT_BRANCH="master";
|
const char* GIT_BRANCH="rolling";
|
||||||
const char* BUILD_TIME="2021-03-09 21:07";
|
const char* BUILD_TIME="2021-03-10 21:09";
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -487,7 +487,7 @@ textarea {
|
|||||||
<input type="text" id="MQTT_Uri_value1">
|
<input type="text" id="MQTT_Uri_value1">
|
||||||
</td>
|
</td>
|
||||||
<td style="font-size: 80%;">
|
<td style="font-size: 80%;">
|
||||||
URI to the MQTT broker including port: http:\\IP-ADRESS:port
|
URI to the MQTT broker including port e.g.: mqtt://IP-Address:Port
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
@@ -543,7 +543,7 @@ textarea {
|
|||||||
<input type="text" id="MQTT_user_value1">
|
<input type="text" id="MQTT_user_value1">
|
||||||
</td>
|
</td>
|
||||||
<td style="font-size: 80%;">
|
<td style="font-size: 80%;">
|
||||||
user for MQTT authenficiation
|
user for MQTT authentication
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
@@ -557,7 +557,7 @@ textarea {
|
|||||||
<input type="text" id="MQTT_password_value1">
|
<input type="text" id="MQTT_password_value1">
|
||||||
</td>
|
</td>
|
||||||
<td style="font-size: 80%;">
|
<td style="font-size: 80%;">
|
||||||
password for MQTT authenficiation
|
password for MQTT authentication
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
5.4.0
|
5.4.1
|
||||||
|
|||||||
Reference in New Issue
Block a user