23 lines
524 B
C#
23 lines
524 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OCR_Decode
|
|
{
|
|
internal class DriverGapToLeaderWindow : Window
|
|
{
|
|
public DriverGapToLeaderWindow(Bitmap image, Rectangle bounds) : base(image, bounds)
|
|
{
|
|
Name = "Gap to leader";
|
|
}
|
|
public override object DecodePng()
|
|
{
|
|
int result = GetTimeFromPng(WindowImage);
|
|
return result;
|
|
}
|
|
}
|
|
}
|