123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
-
- using OpenCVForUnity.CoreModule;
- using OpenCVForUnity.UtilsModule;
- using System;
- using System.Collections.Generic;
- using System.Runtime.InteropServices;
- namespace OpenCVForUnity.XphotoModule
- {
- // C++: class GrayworldWB
- //javadoc: GrayworldWB
- public class GrayworldWB : WhiteBalancer
- {
- 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)
- xphoto_GrayworldWB_delete(nativeObj);
- nativeObj = IntPtr.Zero;
- }
- } finally {
- base.Dispose (disposing);
- }
- #else
- return;
- #endif
- }
- protected internal GrayworldWB (IntPtr addr) : base (addr) { }
- // internal usage only
- public static new GrayworldWB __fromPtr__ (IntPtr addr) { return new GrayworldWB (addr); }
- //
- // C++: float cv::xphoto::GrayworldWB::getSaturationThreshold()
- //
- //javadoc: GrayworldWB::getSaturationThreshold()
- public float getSaturationThreshold ()
- {
- ThrowIfDisposed ();
- #if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
-
- float retVal = xphoto_GrayworldWB_getSaturationThreshold_10(nativeObj);
-
- return retVal;
- #else
- return -1;
- #endif
- }
- //
- // C++: void cv::xphoto::GrayworldWB::setSaturationThreshold(float val)
- //
- //javadoc: GrayworldWB::setSaturationThreshold(val)
- public void setSaturationThreshold (float val)
- {
- ThrowIfDisposed ();
- #if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
-
- xphoto_GrayworldWB_setSaturationThreshold_10(nativeObj, val);
-
- return;
- #else
- return;
- #endif
- }
- #if (UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR
- const string LIBNAME = "__Internal";
- #else
- const string LIBNAME = "opencvforunity";
- #endif
- // C++: float cv::xphoto::GrayworldWB::getSaturationThreshold()
- [DllImport (LIBNAME)]
- private static extern float xphoto_GrayworldWB_getSaturationThreshold_10 (IntPtr nativeObj);
- // C++: void cv::xphoto::GrayworldWB::setSaturationThreshold(float val)
- [DllImport (LIBNAME)]
- private static extern void xphoto_GrayworldWB_setSaturationThreshold_10 (IntPtr nativeObj, float val);
- // native support for java finalize()
- [DllImport (LIBNAME)]
- private static extern void xphoto_GrayworldWB_delete (IntPtr nativeObj);
- }
- }
|