12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- #if !UNITY_WSA_10_0
- using OpenCVForUnity.CoreModule;
- using OpenCVForUnity.UtilsModule;
- using System;
- using System.Collections.Generic;
- using System.Runtime.InteropServices;
- namespace OpenCVForUnity.TextModule {
- // C++: class TextDetector
- //javadoc: TextDetector
- public class TextDetector : DisposableOpenCVObject {
- protected override void Dispose(bool disposing) {
- #if (UNITY_ANDROID && !UNITY_EDITOR)
- try {
- if (disposing) {
- }
- if (IsEnabledDispose) {
- if (nativeObj != IntPtr.Zero)
- text_TextDetector_delete(nativeObj);
- nativeObj = IntPtr.Zero;
- }
- } finally {
- base.Dispose(disposing);
- }
- #else
- return;
- #endif
- }
- protected internal TextDetector(IntPtr addr)
- : base(addr) {
- }
- public IntPtr getNativeObjAddr() {
- return nativeObj;
- }
- // internal usage only
- public static TextDetector __fromPtr__(IntPtr addr) {
- return new TextDetector(addr);
- }
- //
- // C++: void cv::text::TextDetector::detect(Mat inputImage, vector_Rect& Bbox, vector_float& confidence)
- //
- //javadoc: TextDetector::detect(inputImage, Bbox, confidence)
- public virtual void detect(Mat inputImage, MatOfRect Bbox, MatOfFloat confidence) {
- ThrowIfDisposed();
- if (inputImage != null)
- inputImage.ThrowIfDisposed();
- if (Bbox != null)
- Bbox.ThrowIfDisposed();
- if (confidence != null)
- confidence.ThrowIfDisposed();
- #if (UNITY_ANDROID && !UNITY_EDITOR)
- Mat Bbox_mat = Bbox;
- Mat confidence_mat = confidence;
- text_TextDetector_detect_10(nativeObj, inputImage.nativeObj, Bbox_mat.nativeObj, confidence_mat.nativeObj);
- return;
- #else
- return;
- #endif
- }
- #if (UNITY_ANDROID && !UNITY_EDITOR)
- const string LIBNAME = "opencvforunity";
- // C++: void cv::text::TextDetector::detect(Mat inputImage, vector_Rect& Bbox, vector_float& confidence)
- [DllImport(LIBNAME)]
- private static extern void text_TextDetector_detect_10(IntPtr nativeObj, IntPtr inputImage_nativeObj, IntPtr Bbox_mat_nativeObj, IntPtr confidence_mat_nativeObj);
- // native support for java finalize()
- [DllImport(LIBNAME)]
- private static extern void text_TextDetector_delete(IntPtr nativeObj);
- #endif
- }
- }
- #endif
|