Started the work for SQLI

This commit is contained in:
2023-05-16 15:11:28 +02:00
parent 39e9dbb7d6
commit 511f5d98e4
4 changed files with 86 additions and 2 deletions
+6
View File
@@ -22,6 +22,10 @@ namespace Test_Merge
public List<string> Drivers;
public List<Zone> MainZones;
private SqliteStorage _storage;
public SqliteStorage Storage { get => _storage; private set => _storage = value; }
public Reader(string configFile, Bitmap image, bool loadOCR = true)
{
MainZones = Load(image, configFile, ref Drivers, loadOCR);
@@ -214,6 +218,8 @@ namespace Test_Merge
string result = "";
List<DriverData> mainResults = new List<DriverData>();
Storage = new SqliteStorage();
//Decode
for (int mainZoneId = 0; mainZoneId < mainZones.Count; mainZoneId++)
{