123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
-
- using OpenCVForUnity.CoreModule;
- using OpenCVForUnity.UtilsModule;
- using System;
- using System.Collections.Generic;
- using System.Runtime.InteropServices;
- namespace OpenCVForUnity.XimgprocModule {
- // C++: class SuperpixelSLIC
- //javadoc: SuperpixelSLIC
- public class SuperpixelSLIC : Algorithm {
- protected override void Dispose(bool disposing) {
- #if (UNITY_ANDROID && !UNITY_EDITOR)
- try {
- if (disposing) {
- }
- if (IsEnabledDispose) {
- if (nativeObj != IntPtr.Zero)
- ximgproc_SuperpixelSLIC_delete(nativeObj);
- nativeObj = IntPtr.Zero;
- }
- } finally {
- base.Dispose(disposing);
- }
- #else
- return;
- #endif
- }
- protected internal SuperpixelSLIC(IntPtr addr) : base(addr) { }
- // internal usage only
- public static new SuperpixelSLIC __fromPtr__(IntPtr addr) { return new SuperpixelSLIC(addr); }
- //
- // C++: int cv::ximgproc::SuperpixelSLIC::getNumberOfSuperpixels()
- //
- //javadoc: SuperpixelSLIC::getNumberOfSuperpixels()
- public int getNumberOfSuperpixels() {
- ThrowIfDisposed();
- #if (UNITY_ANDROID && !UNITY_EDITOR)
- int retVal = ximgproc_SuperpixelSLIC_getNumberOfSuperpixels_10(nativeObj);
- return retVal;
- #else
- return -1;
- #endif
- }
- //
- // C++: void cv::ximgproc::SuperpixelSLIC::enforceLabelConnectivity(int min_element_size = 25)
- //
- //javadoc: SuperpixelSLIC::enforceLabelConnectivity(min_element_size)
- public void enforceLabelConnectivity(int min_element_size) {
- ThrowIfDisposed();
- #if (UNITY_ANDROID && !UNITY_EDITOR)
- ximgproc_SuperpixelSLIC_enforceLabelConnectivity_10(nativeObj, min_element_size);
- return;
- #else
- return;
- #endif
- }
- //javadoc: SuperpixelSLIC::enforceLabelConnectivity()
- public void enforceLabelConnectivity() {
- ThrowIfDisposed();
- #if (UNITY_ANDROID && !UNITY_EDITOR)
- ximgproc_SuperpixelSLIC_enforceLabelConnectivity_11(nativeObj);
- return;
- #else
- return;
- #endif
- }
- //
- // C++: void cv::ximgproc::SuperpixelSLIC::getLabelContourMask(Mat& image, bool thick_line = true)
- //
- //javadoc: SuperpixelSLIC::getLabelContourMask(image, thick_line)
- public void getLabelContourMask(Mat image, bool thick_line) {
- ThrowIfDisposed();
- if (image != null) image.ThrowIfDisposed();
- #if (UNITY_ANDROID && !UNITY_EDITOR)
- ximgproc_SuperpixelSLIC_getLabelContourMask_10(nativeObj, image.nativeObj, thick_line);
- return;
- #else
- return;
- #endif
- }
- //javadoc: SuperpixelSLIC::getLabelContourMask(image)
- public void getLabelContourMask(Mat image) {
- ThrowIfDisposed();
- if (image != null) image.ThrowIfDisposed();
- #if (UNITY_ANDROID && !UNITY_EDITOR)
- ximgproc_SuperpixelSLIC_getLabelContourMask_11(nativeObj, image.nativeObj);
- return;
- #else
- return;
- #endif
- }
- //
- // C++: void cv::ximgproc::SuperpixelSLIC::getLabels(Mat& labels_out)
- //
- //javadoc: SuperpixelSLIC::getLabels(labels_out)
- public void getLabels(Mat labels_out) {
- ThrowIfDisposed();
- if (labels_out != null) labels_out.ThrowIfDisposed();
- #if (UNITY_ANDROID && !UNITY_EDITOR)
- ximgproc_SuperpixelSLIC_getLabels_10(nativeObj, labels_out.nativeObj);
- return;
- #else
- return;
- #endif
- }
- //
- // C++: void cv::ximgproc::SuperpixelSLIC::iterate(int num_iterations = 10)
- //
- //javadoc: SuperpixelSLIC::iterate(num_iterations)
- public void iterate(int num_iterations) {
- ThrowIfDisposed();
- #if (UNITY_ANDROID && !UNITY_EDITOR)
- ximgproc_SuperpixelSLIC_iterate_10(nativeObj, num_iterations);
- return;
- #else
- return;
- #endif
- }
- //javadoc: SuperpixelSLIC::iterate()
- public void iterate() {
- ThrowIfDisposed();
- #if (UNITY_ANDROID && !UNITY_EDITOR)
- ximgproc_SuperpixelSLIC_iterate_11(nativeObj);
- return;
- #else
- return;
- #endif
- }
- #if (UNITY_ANDROID && !UNITY_EDITOR)
- const string LIBNAME = "opencvforunity";
- // C++: int cv::ximgproc::SuperpixelSLIC::getNumberOfSuperpixels()
- [DllImport(LIBNAME)]
- private static extern int ximgproc_SuperpixelSLIC_getNumberOfSuperpixels_10(IntPtr nativeObj);
- // C++: void cv::ximgproc::SuperpixelSLIC::enforceLabelConnectivity(int min_element_size = 25)
- [DllImport(LIBNAME)]
- private static extern void ximgproc_SuperpixelSLIC_enforceLabelConnectivity_10(IntPtr nativeObj, int min_element_size);
- [DllImport(LIBNAME)]
- private static extern void ximgproc_SuperpixelSLIC_enforceLabelConnectivity_11(IntPtr nativeObj);
- // C++: void cv::ximgproc::SuperpixelSLIC::getLabelContourMask(Mat& image, bool thick_line = true)
- [DllImport(LIBNAME)]
- private static extern void ximgproc_SuperpixelSLIC_getLabelContourMask_10(IntPtr nativeObj, IntPtr image_nativeObj, bool thick_line);
- [DllImport(LIBNAME)]
- private static extern void ximgproc_SuperpixelSLIC_getLabelContourMask_11(IntPtr nativeObj, IntPtr image_nativeObj);
- // C++: void cv::ximgproc::SuperpixelSLIC::getLabels(Mat& labels_out)
- [DllImport(LIBNAME)]
- private static extern void ximgproc_SuperpixelSLIC_getLabels_10(IntPtr nativeObj, IntPtr labels_out_nativeObj);
- // C++: void cv::ximgproc::SuperpixelSLIC::iterate(int num_iterations = 10)
- [DllImport(LIBNAME)]
- private static extern void ximgproc_SuperpixelSLIC_iterate_10(IntPtr nativeObj, int num_iterations);
- [DllImport(LIBNAME)]
- private static extern void ximgproc_SuperpixelSLIC_iterate_11(IntPtr nativeObj);
- // native support for java finalize()
- [DllImport(LIBNAME)]
- private static extern void ximgproc_SuperpixelSLIC_delete(IntPtr nativeObj);
- #endif
- }
- }
|