mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-08 04:26:58 +03:00
fixed parsing roi for CCW flag.
This commit is contained in:
@@ -236,9 +236,9 @@ function ParseConfigParamAll(_aktline, _catname){
|
||||
let [isCom, input] = isCommented(_input);
|
||||
var linesplit = ZerlegeZeile(input);
|
||||
ParamExtractValueAll(param, linesplit, _catname, _aktline, isCom);
|
||||
if (!isCom && (linesplit.length == 5) && (_catname == 'Digits'))
|
||||
if (!isCom && (linesplit.length == 6) && (_catname == 'Digits'))
|
||||
ExtractROIs(input, "digit");
|
||||
if (!isCom && (linesplit.length == 5) && (_catname == 'Analog'))
|
||||
if (!isCom && (linesplit.length == 6) && (_catname == 'Analog'))
|
||||
ExtractROIs(input, "analog");
|
||||
if (!isCom && (linesplit.length == 3) && (_catname == 'Alignment'))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user