Files
TrackTrendsDoc/temp_annexes/Code/DriverGapToLeaderWindow.md
T

974 B

DriverGapToLeaderWindow.cs

/// Author : Maxime Rohmer
/// Date : 08/05/2023
/// File : DriverGapToLeaderWindow.cs
/// Brief : Window containing infos about the gap to the leader of a driver
/// Version : 0.1

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Test_Merge
{
    internal class DriverGapToLeaderWindow:Window
    {
        public DriverGapToLeaderWindow(Bitmap image, Rectangle bounds, bool generateEngine = true) : base(image, bounds,generateEngine)
        {
            Name = "GapToLeader";
        }
        /// <summary>
        /// Decodes the gap to leader using Tesseract OCR 
        /// </summary>
        /// <returns></returns>
        public override async Task<object> DecodePng()
        {
            int result = await GetTimeFromPng(WindowImage, OcrImage.WindowType.Gap, Engine);
            return result;
        }
    }
}