123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
-
- using OpenCVForUnity.CoreModule;
- using OpenCVForUnity.UtilsModule;
- using System;
- using System.Collections.Generic;
- using System.Runtime.InteropServices;
- namespace OpenCVForUnity.PhotoModule {
- // C++: class CalibrateRobertson
- //javadoc: CalibrateRobertson
- public class CalibrateRobertson : CalibrateCRF {
- protected override void Dispose(bool disposing) {
- #if (UNITY_ANDROID && !UNITY_EDITOR)
- try {
- if (disposing) {
- }
- if (IsEnabledDispose) {
- if (nativeObj != IntPtr.Zero)
- photo_CalibrateRobertson_delete(nativeObj);
- nativeObj = IntPtr.Zero;
- }
- } finally {
- base.Dispose(disposing);
- }
- #else
- return;
- #endif
- }
- protected internal CalibrateRobertson(IntPtr addr) : base(addr) { }
- // internal usage only
- public static new CalibrateRobertson __fromPtr__(IntPtr addr) { return new CalibrateRobertson(addr); }
- //
- // C++: Mat cv::CalibrateRobertson::getRadiance()
- //
- //javadoc: CalibrateRobertson::getRadiance()
- public Mat getRadiance() {
- ThrowIfDisposed();
- #if (UNITY_ANDROID && !UNITY_EDITOR)
- Mat retVal = new Mat(photo_CalibrateRobertson_getRadiance_10(nativeObj));
- return retVal;
- #else
- return null;
- #endif
- }
- //
- // C++: float cv::CalibrateRobertson::getThreshold()
- //
- //javadoc: CalibrateRobertson::getThreshold()
- public float getThreshold() {
- ThrowIfDisposed();
- #if (UNITY_ANDROID && !UNITY_EDITOR)
- float retVal = photo_CalibrateRobertson_getThreshold_10(nativeObj);
- return retVal;
- #else
- return -1;
- #endif
- }
- //
- // C++: int cv::CalibrateRobertson::getMaxIter()
- //
- //javadoc: CalibrateRobertson::getMaxIter()
- public int getMaxIter() {
- ThrowIfDisposed();
- #if (UNITY_ANDROID && !UNITY_EDITOR)
- int retVal = photo_CalibrateRobertson_getMaxIter_10(nativeObj);
- return retVal;
- #else
- return -1;
- #endif
- }
- //
- // C++: void cv::CalibrateRobertson::setMaxIter(int max_iter)
- //
- //javadoc: CalibrateRobertson::setMaxIter(max_iter)
- public void setMaxIter(int max_iter) {
- ThrowIfDisposed();
- #if (UNITY_ANDROID && !UNITY_EDITOR)
- photo_CalibrateRobertson_setMaxIter_10(nativeObj, max_iter);
- return;
- #else
- return;
- #endif
- }
- //
- // C++: void cv::CalibrateRobertson::setThreshold(float threshold)
- //
- //javadoc: CalibrateRobertson::setThreshold(threshold)
- public void setThreshold(float threshold) {
- ThrowIfDisposed();
- #if (UNITY_ANDROID && !UNITY_EDITOR)
- photo_CalibrateRobertson_setThreshold_10(nativeObj, threshold);
- return;
- #else
- return;
- #endif
- }
- #if (UNITY_ANDROID && !UNITY_EDITOR)
- const string LIBNAME = "opencvforunity";
- // C++: Mat cv::CalibrateRobertson::getRadiance()
- [DllImport(LIBNAME)]
- private static extern IntPtr photo_CalibrateRobertson_getRadiance_10(IntPtr nativeObj);
- // C++: float cv::CalibrateRobertson::getThreshold()
- [DllImport(LIBNAME)]
- private static extern float photo_CalibrateRobertson_getThreshold_10(IntPtr nativeObj);
- // C++: int cv::CalibrateRobertson::getMaxIter()
- [DllImport(LIBNAME)]
- private static extern int photo_CalibrateRobertson_getMaxIter_10(IntPtr nativeObj);
- // C++: void cv::CalibrateRobertson::setMaxIter(int max_iter)
- [DllImport(LIBNAME)]
- private static extern void photo_CalibrateRobertson_setMaxIter_10(IntPtr nativeObj, int max_iter);
- // C++: void cv::CalibrateRobertson::setThreshold(float threshold)
- [DllImport(LIBNAME)]
- private static extern void photo_CalibrateRobertson_setThreshold_10(IntPtr nativeObj, float threshold);
- // native support for java finalize()
- [DllImport(LIBNAME)]
- private static extern void photo_CalibrateRobertson_delete(IntPtr nativeObj);
- #endif
- }
- }
|