Now the sector recognition is effective even with the colored text

This commit is contained in:
2023-05-16 09:28:59 +02:00
parent b6de154438
commit 39e9dbb7d6
8 changed files with 115 additions and 16 deletions
+4 -7
View File
@@ -221,15 +221,12 @@ namespace Test_Merge
{
case 0:
//Main Zone
int driverID = 0;
//Parallel.ForEach(mainZones[mainZoneId].Zones,async (z) =>
foreach (Zone z in mainZones[mainZoneId].Zones)
{
driverID++;
if (driverID == 9)
Console.WriteLine("AAAAA");
z.ZoneImage.Save("Driver" + driverID + ".png");
mainResults.Add(await z.Decode(drivers));
}
mainResults.Add(await z.Decode(new List<string>(drivers)));
}//);
//MessageBox.Show("Finished");
break;
//Next there could be a Title Zone and TrackInfoZone
}