CharucoParameters.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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/objdetect.hpp"
  8. #import "opencv2/objdetect/charuco_detector.hpp"
  9. #else
  10. #define CV_EXPORTS
  11. #endif
  12. #import <Foundation/Foundation.h>
  13. @class Mat;
  14. NS_ASSUME_NONNULL_BEGIN
  15. // C++: class CharucoParameters
  16. /**
  17. * The CharucoParameters module
  18. *
  19. * Member of `Objdetect`
  20. */
  21. CV_EXPORTS @interface CharucoParameters : NSObject
  22. #ifdef __cplusplus
  23. @property(readonly)cv::Ptr<cv::aruco::CharucoParameters> nativePtr;
  24. #endif
  25. #ifdef __cplusplus
  26. - (instancetype)initWithNativePtr:(cv::Ptr<cv::aruco::CharucoParameters>)nativePtr;
  27. + (instancetype)fromNative:(cv::Ptr<cv::aruco::CharucoParameters>)nativePtr;
  28. #endif
  29. #pragma mark - Methods
  30. //
  31. // cv::aruco::CharucoParameters::CharucoParameters()
  32. //
  33. - (instancetype)init;
  34. //
  35. // C++: Mat cv::aruco::CharucoParameters::cameraMatrix
  36. //
  37. @property Mat* cameraMatrix;
  38. //
  39. // C++: Mat cv::aruco::CharucoParameters::distCoeffs
  40. //
  41. @property Mat* distCoeffs;
  42. //
  43. // C++: int cv::aruco::CharucoParameters::minMarkers
  44. //
  45. @property int minMarkers;
  46. //
  47. // C++: bool cv::aruco::CharucoParameters::tryRefineMarkers
  48. //
  49. @property BOOL tryRefineMarkers;
  50. @end
  51. NS_ASSUME_NONNULL_END