extern alias CoreDrawing; using System; using System.Collections.Generic; using ZeroLevel.ML.DNN.Models; namespace ZeroLevel.ML.DNN.Detectors { public interface IDetector : IDisposable { FastTensorPool CreateInput(string filePath); FastTensorPool CreateInput(CoreDrawing.System.Drawing.Bitmap image, string filePath = null!); List Detect(FastTensorPool input); List Detect(string filePath); List Detect(CoreDrawing.System.Drawing.Bitmap image, string filePath = null!); } }