mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-22 00:22:01 +00:00
9 lines
243 B
C#
9 lines
243 B
C#
using Avalonia.Media.Imaging;
|
|
|
|
namespace Splitter_UI.Services;
|
|
|
|
public interface IMatToBitmapConverter
|
|
{
|
|
Bitmap Convert(Mat mat, Bitmap? existing = null);
|
|
Bitmap Convert(byte[] bgr, int width, int height, Bitmap? existing = null);
|
|
} |