Files
SuperVPN/output/Libraries/AForge.Imaging/AForge/Imaging/IBlockMatching.cs
2025-10-09 09:57:24 +09:00

15 lines
484 B
C#

using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
namespace AForge.Imaging;
public interface IBlockMatching
{
List<BlockMatch> ProcessImage(Bitmap sourceImage, List<IntPoint> coordinates, Bitmap searchImage);
List<BlockMatch> ProcessImage(BitmapData sourceImageData, List<IntPoint> coordinates, BitmapData searchImageData);
List<BlockMatch> ProcessImage(UnmanagedImage sourceImage, List<IntPoint> coordinates, UnmanagedImage searchImage);
}