using OpenCVForUnity.CoreModule; using OpenCVForUnity.UtilsModule; using System; using System.Collections.Generic; using System.Runtime.InteropServices; namespace OpenCVForUnity.XimgprocModule { // C++: class SparseMatchInterpolator //javadoc: SparseMatchInterpolator public class SparseMatchInterpolator : Algorithm { protected override void Dispose(bool disposing) { #if (UNITY_ANDROID && !UNITY_EDITOR) try { if (disposing) { } if (IsEnabledDispose) { if (nativeObj != IntPtr.Zero) ximgproc_SparseMatchInterpolator_delete(nativeObj); nativeObj = IntPtr.Zero; } } finally { base.Dispose(disposing); } #else return; #endif } protected internal SparseMatchInterpolator(IntPtr addr) : base(addr) { } // internal usage only public static new SparseMatchInterpolator __fromPtr__(IntPtr addr) { return new SparseMatchInterpolator(addr); } // // C++: void cv::ximgproc::SparseMatchInterpolator::interpolate(Mat from_image, Mat from_points, Mat to_image, Mat to_points, Mat& dense_flow) // //javadoc: SparseMatchInterpolator::interpolate(from_image, from_points, to_image, to_points, dense_flow) public void interpolate(Mat from_image, Mat from_points, Mat to_image, Mat to_points, Mat dense_flow) { ThrowIfDisposed(); if (from_image != null) from_image.ThrowIfDisposed(); if (from_points != null) from_points.ThrowIfDisposed(); if (to_image != null) to_image.ThrowIfDisposed(); if (to_points != null) to_points.ThrowIfDisposed(); if (dense_flow != null) dense_flow.ThrowIfDisposed(); #if (UNITY_ANDROID && !UNITY_EDITOR) ximgproc_SparseMatchInterpolator_interpolate_10(nativeObj, from_image.nativeObj, from_points.nativeObj, to_image.nativeObj, to_points.nativeObj, dense_flow.nativeObj); return; #else return; #endif } #if (UNITY_ANDROID && !UNITY_EDITOR) const string LIBNAME = "opencvforunity"; // C++: void cv::ximgproc::SparseMatchInterpolator::interpolate(Mat from_image, Mat from_points, Mat to_image, Mat to_points, Mat& dense_flow) [DllImport(LIBNAME)] private static extern void ximgproc_SparseMatchInterpolator_interpolate_10(IntPtr nativeObj, IntPtr from_image_nativeObj, IntPtr from_points_nativeObj, IntPtr to_image_nativeObj, IntPtr to_points_nativeObj, IntPtr dense_flow_nativeObj); // native support for java finalize() [DllImport(LIBNAME)] private static extern void ximgproc_SparseMatchInterpolator_delete(IntPtr nativeObj); #endif } }