BackgroundSubtractorLSBPDesc.h 813 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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/bgsegm.hpp"
  8. #else
  9. #define CV_EXPORTS
  10. #endif
  11. #import <Foundation/Foundation.h>
  12. NS_ASSUME_NONNULL_BEGIN
  13. // C++: class BackgroundSubtractorLSBPDesc
  14. /**
  15. * This is for calculation of the LSBP descriptors.
  16. *
  17. * Member of `Bgsegm`
  18. */
  19. CV_EXPORTS @interface BackgroundSubtractorLSBPDesc : NSObject
  20. #ifdef __cplusplus
  21. @property(readonly)cv::Ptr<cv::bgsegm::BackgroundSubtractorLSBPDesc> nativePtr;
  22. #endif
  23. #ifdef __cplusplus
  24. - (instancetype)initWithNativePtr:(cv::Ptr<cv::bgsegm::BackgroundSubtractorLSBPDesc>)nativePtr;
  25. + (instancetype)fromNative:(cv::Ptr<cv::bgsegm::BackgroundSubtractorLSBPDesc>)nativePtr;
  26. #endif
  27. #pragma mark - Methods
  28. @end
  29. NS_ASSUME_NONNULL_END