Now the intervals are fucked but the lap times are ok

This commit is contained in:
2023-04-06 08:07:50 +02:00
parent 31074428b3
commit 9af92f06b0
+3 -1
View File
@@ -25,7 +25,9 @@ namespace OCR_Decode
result = InvertColors(result); result = InvertColors(result);
//result = Resize(result); //result = Resize(result);
result = Tresholding(result, 165); result = Tresholding(result, 165);
result = Dilatation(result, 1); result = Resize(result);
result = Resize(result);
//result = Dilatation(result, 1);
return result; return result;
} }
public static Bitmap Grayscale(Bitmap input) public static Bitmap Grayscale(Bitmap input)