using OpenCvSharp; namespace Inspectron.Fastbuffer.Interfaces; public interface IFilesystem:IDisposable { public void Write(string path, Mat data); public void Delete(string path); }