# DriverPositionWindow.cs ``` cs /// Author : Maxime Rohmer /// Date : 30/05/2023 /// File : DriverPositionWindow.cs /// Brief : Window containing infos about the position of a driver. /// Version : Alpha 1.0 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Drawing; namespace TrackTrends { public class DriverPositionWindow:Window { public DriverPositionWindow(Bitmap image, Rectangle bounds, bool generateEngine = true) : base(image, bounds,generateEngine) { Name = "Position"; } /// /// Decodes the position number using Tesseract OCR /// /// An int representing the position of the driver (should be between 1 and 20 included) public override object DecodePng() { string ocrResult = GetStringFromPng(WindowImage, Engine, "0123456789"); int position; try { position = Convert.ToInt32(ocrResult); } catch { position = -1; } return position; } } } ```