From 72892776793ef5f6d324647cd77216766a109741 Mon Sep 17 00:00:00 2001 From: Ayane Date: Tue, 28 Feb 2023 13:09:16 +0800 Subject: [PATCH] This did not commit AUGHHH Signed-off-by: Ayane --- Mediapipe.Net/Framework/Format/ImageFrame.cs | 4 ---- 1 file changed, 4 deletions(-) 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 _) { }