diff --git a/Mediapipe.Net/Framework/Format/ImageFrame.cs b/Mediapipe.Net/Framework/Format/ImageFrame.cs index 0e35d22..ef60faa 100644 --- a/Mediapipe.Net/Framework/Format/ImageFrame.cs +++ b/Mediapipe.Net/Framework/Format/ImageFrame.cs @@ -45,10 +45,6 @@ namespace Mediapipe.Net.Framework.Format public ImageFrame(ImageFormat.Types.Format format, int width, int height, int widthStep, ReadOnlySpan pixelData, Deleter deleter) : this(format, width, height, widthStep, spanToBytePtr(pixelData), deleter) { } - - - public ImageFrame(ImageFormat.Types.Format format, int width, int height, int widthStep, IntPtr pixelData) : this(format, width, height, widthStep, pixelData, VoidDeleter) { } - public ImageFrame(ImageFormat.Types.Format format, int width, int height, int widthStep, ReadOnlySpan pixelData) : this(format, width, height, widthStep, pixelData, VoidDeleter) { } public static void VoidDeleter(IntPtr _) { }