BaseOCR.h 699 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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/text.hpp"
  8. #import "opencv2/text/ocr.hpp"
  9. #else
  10. #define CV_EXPORTS
  11. #endif
  12. #import <Foundation/Foundation.h>
  13. NS_ASSUME_NONNULL_BEGIN
  14. // C++: class BaseOCR
  15. /**
  16. * The BaseOCR module
  17. *
  18. * Member of `Text`
  19. */
  20. CV_EXPORTS @interface BaseOCR : NSObject
  21. #ifdef __cplusplus
  22. @property(readonly)cv::Ptr<cv::text::BaseOCR> nativePtr;
  23. #endif
  24. #ifdef __cplusplus
  25. - (instancetype)initWithNativePtr:(cv::Ptr<cv::text::BaseOCR>)nativePtr;
  26. + (instancetype)fromNative:(cv::Ptr<cv::text::BaseOCR>)nativePtr;
  27. #endif
  28. #pragma mark - Methods
  29. @end
  30. NS_ASSUME_NONNULL_END