added items

This commit is contained in:
Boki 2026-02-28 15:13:31 -05:00
parent c3de5fdb63
commit 5f90bc137b
158 changed files with 2316 additions and 512 deletions

View file

@ -1,6 +1,6 @@
using System.Drawing;
namespace Poe2Trade.Screen.Ocr;
namespace Automata.Screen.Ocr;
/// <summary>
/// OCR engine wrapping the Python EasyOCR daemon.

View file

@ -1,6 +1,6 @@
using Serilog;
namespace Poe2Trade.Screen.Ocr;
namespace Automata.Screen.Ocr;
public static class OcrEngineFactory
{

View file

@ -3,7 +3,7 @@ using System.Drawing.Imaging;
using System.Runtime.InteropServices;
using Serilog;
namespace Poe2Trade.Screen.Ocr;
namespace Automata.Screen.Ocr;
/// <summary>
/// OCR engine using OneOCR (Windows 11 Snipping Tool's built-in engine).

View file

@ -7,7 +7,7 @@ using Windows.Storage.Streams;
using BitmapDecoder = Windows.Graphics.Imaging.BitmapDecoder;
using SdImageFormat = System.Drawing.Imaging.ImageFormat;
namespace Poe2Trade.Screen.Ocr;
namespace Automata.Screen.Ocr;
public sealed class WinOcrEngine : IOcrEngine
{