123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
-
- using OpenCVForUnity.CoreModule;
- using OpenCVForUnity.UtilsModule;
- using System;
- using System.Collections.Generic;
- using System.Runtime.InteropServices;
- namespace OpenCVForUnity.ImgprocModule
- {
- // C++: class CLAHE
- //javadoc: CLAHE
- public class CLAHE : Algorithm
- {
- protected override void Dispose (bool disposing)
- {
- #if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
- try {
- if (disposing) {
- }
- if (IsEnabledDispose) {
- if (nativeObj != IntPtr.Zero)
- imgproc_CLAHE_delete(nativeObj);
- nativeObj = IntPtr.Zero;
- }
- } finally {
- base.Dispose (disposing);
- }
- #else
- return;
- #endif
- }
- protected internal CLAHE (IntPtr addr) : base (addr) { }
- // internal usage only
- public static new CLAHE __fromPtr__ (IntPtr addr) { return new CLAHE (addr); }
- //
- // C++: Size cv::CLAHE::getTilesGridSize()
- //
- //javadoc: CLAHE::getTilesGridSize()
- public Size getTilesGridSize ()
- {
- ThrowIfDisposed ();
- #if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
-
- double[] tmpArray = new double[2];
- imgproc_CLAHE_getTilesGridSize_10(nativeObj, tmpArray);
- Size retVal = new Size (tmpArray);
-
- return retVal;
- #else
- return null;
- #endif
- }
- //
- // C++: double cv::CLAHE::getClipLimit()
- //
- //javadoc: CLAHE::getClipLimit()
- public double getClipLimit ()
- {
- ThrowIfDisposed ();
- #if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
-
- double retVal = imgproc_CLAHE_getClipLimit_10(nativeObj);
-
- return retVal;
- #else
- return -1;
- #endif
- }
- //
- // C++: void cv::CLAHE::apply(Mat src, Mat& dst)
- //
- //javadoc: CLAHE::apply(src, dst)
- public void apply (Mat src, Mat dst)
- {
- ThrowIfDisposed ();
- if (src != null) src.ThrowIfDisposed ();
- if (dst != null) dst.ThrowIfDisposed ();
- #if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
-
- imgproc_CLAHE_apply_10(nativeObj, src.nativeObj, dst.nativeObj);
-
- return;
- #else
- return;
- #endif
- }
- //
- // C++: void cv::CLAHE::collectGarbage()
- //
- //javadoc: CLAHE::collectGarbage()
- public void collectGarbage ()
- {
- ThrowIfDisposed ();
- #if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
-
- imgproc_CLAHE_collectGarbage_10(nativeObj);
-
- return;
- #else
- return;
- #endif
- }
- //
- // C++: void cv::CLAHE::setClipLimit(double clipLimit)
- //
- //javadoc: CLAHE::setClipLimit(clipLimit)
- public void setClipLimit (double clipLimit)
- {
- ThrowIfDisposed ();
- #if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
-
- imgproc_CLAHE_setClipLimit_10(nativeObj, clipLimit);
-
- return;
- #else
- return;
- #endif
- }
- //
- // C++: void cv::CLAHE::setTilesGridSize(Size tileGridSize)
- //
- //javadoc: CLAHE::setTilesGridSize(tileGridSize)
- public void setTilesGridSize (Size tileGridSize)
- {
- ThrowIfDisposed ();
- #if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
-
- imgproc_CLAHE_setTilesGridSize_10(nativeObj, tileGridSize.width, tileGridSize.height);
-
- return;
- #else
- return;
- #endif
- }
- #if (UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR
- const string LIBNAME = "__Internal";
- #else
- const string LIBNAME = "opencvforunity";
- #endif
- // C++: Size cv::CLAHE::getTilesGridSize()
- [DllImport (LIBNAME)]
- private static extern void imgproc_CLAHE_getTilesGridSize_10 (IntPtr nativeObj, double[] retVal);
- // C++: double cv::CLAHE::getClipLimit()
- [DllImport (LIBNAME)]
- private static extern double imgproc_CLAHE_getClipLimit_10 (IntPtr nativeObj);
- // C++: void cv::CLAHE::apply(Mat src, Mat& dst)
- [DllImport (LIBNAME)]
- private static extern void imgproc_CLAHE_apply_10 (IntPtr nativeObj, IntPtr src_nativeObj, IntPtr dst_nativeObj);
- // C++: void cv::CLAHE::collectGarbage()
- [DllImport (LIBNAME)]
- private static extern void imgproc_CLAHE_collectGarbage_10 (IntPtr nativeObj);
- // C++: void cv::CLAHE::setClipLimit(double clipLimit)
- [DllImport (LIBNAME)]
- private static extern void imgproc_CLAHE_setClipLimit_10 (IntPtr nativeObj, double clipLimit);
- // C++: void cv::CLAHE::setTilesGridSize(Size tileGridSize)
- [DllImport (LIBNAME)]
- private static extern void imgproc_CLAHE_setTilesGridSize_10 (IntPtr nativeObj, double tileGridSize_width, double tileGridSize_height);
- // native support for java finalize()
- [DllImport (LIBNAME)]
- private static extern void imgproc_CLAHE_delete (IntPtr nativeObj);
- }
- }
|