SelectiveSearchSegmentationStrategyTexture.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //
  2. // This file is auto-generated. Please don't modify it!
  3. //
  4. #pragma once
  5. #ifdef __cplusplus
  6. //#import "opencv.hpp"
  7. #import "opencv2/ximgproc.hpp"
  8. #import "opencv2/ximgproc/segmentation.hpp"
  9. #else
  10. #define CV_EXPORTS
  11. #endif
  12. #import <Foundation/Foundation.h>
  13. #import "SelectiveSearchSegmentationStrategy.h"
  14. NS_ASSUME_NONNULL_BEGIN
  15. // C++: class SelectiveSearchSegmentationStrategyTexture
  16. /**
  17. * Texture-based strategy for the selective search segmentation algorithm
  18. * The class is implemented from the algorithm described in CITE: uijlings2013selective.
  19. *
  20. * Member of `Ximgproc`
  21. */
  22. CV_EXPORTS @interface SelectiveSearchSegmentationStrategyTexture : SelectiveSearchSegmentationStrategy
  23. #ifdef __cplusplus
  24. @property(readonly)cv::Ptr<cv::ximgproc::segmentation::SelectiveSearchSegmentationStrategyTexture> nativePtrSelectiveSearchSegmentationStrategyTexture;
  25. #endif
  26. #ifdef __cplusplus
  27. - (instancetype)initWithNativePtr:(cv::Ptr<cv::ximgproc::segmentation::SelectiveSearchSegmentationStrategyTexture>)nativePtr;
  28. + (instancetype)fromNative:(cv::Ptr<cv::ximgproc::segmentation::SelectiveSearchSegmentationStrategyTexture>)nativePtr;
  29. #endif
  30. #pragma mark - Methods
  31. @end
  32. NS_ASSUME_NONNULL_END