mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-21 16:12:01 +00:00
8 lines
183 B
C#
8 lines
183 B
C#
namespace splitter.algo;
|
|
|
|
public class DummyDetector : IObjectDetector
|
|
{
|
|
public List<(Rect box, Point2f center)> DetectAll(Mat frameCont) => [];
|
|
public void Dispose() {}
|
|
}
|