TrackerGOTURNParams.h 1014 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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/video.hpp"
  8. #import "opencv2/video/tracking.hpp"
  9. #else
  10. #define CV_EXPORTS
  11. #endif
  12. #import <Foundation/Foundation.h>
  13. NS_ASSUME_NONNULL_BEGIN
  14. // C++: class Params
  15. /**
  16. * The Params module
  17. *
  18. * Member of `Video`
  19. */
  20. CV_EXPORTS @interface TrackerGOTURNParams : NSObject
  21. #ifdef __cplusplus
  22. @property(readonly)cv::Ptr<cv::TrackerGOTURN::Params> nativePtr;
  23. #endif
  24. #ifdef __cplusplus
  25. - (instancetype)initWithNativePtr:(cv::Ptr<cv::TrackerGOTURN::Params>)nativePtr;
  26. + (instancetype)fromNative:(cv::Ptr<cv::TrackerGOTURN::Params>)nativePtr;
  27. #endif
  28. #pragma mark - Methods
  29. //
  30. // cv::TrackerGOTURN::Params::Params()
  31. //
  32. - (instancetype)init;
  33. //
  34. // C++: string cv::TrackerGOTURN::Params::modelTxt
  35. //
  36. @property NSString* modelTxt;
  37. //
  38. // C++: string cv::TrackerGOTURN::Params::modelBin
  39. //
  40. @property NSString* modelBin;
  41. @end
  42. NS_ASSUME_NONNULL_END