PredictCollector.h 808 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/face.hpp"
  8. #import "opencv2/face/predict_collector.hpp"
  9. #else
  10. #define CV_EXPORTS
  11. #endif
  12. #import <Foundation/Foundation.h>
  13. NS_ASSUME_NONNULL_BEGIN
  14. // C++: class PredictCollector
  15. /**
  16. * Abstract base class for all strategies of prediction result handling
  17. *
  18. * Member of `Face`
  19. */
  20. CV_EXPORTS @interface PredictCollector : NSObject
  21. #ifdef __cplusplus
  22. @property(readonly)cv::Ptr<cv::face::PredictCollector> nativePtr;
  23. #endif
  24. #ifdef __cplusplus
  25. - (instancetype)initWithNativePtr:(cv::Ptr<cv::face::PredictCollector>)nativePtr;
  26. + (instancetype)fromNative:(cv::Ptr<cv::face::PredictCollector>)nativePtr;
  27. #endif
  28. #pragma mark - Methods
  29. @end
  30. NS_ASSUME_NONNULL_END