CalibrateRobertson.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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/photo.hpp"
  8. #else
  9. #define CV_EXPORTS
  10. #endif
  11. #import <Foundation/Foundation.h>
  12. #import "CalibrateCRF.h"
  13. @class Mat;
  14. NS_ASSUME_NONNULL_BEGIN
  15. // C++: class CalibrateRobertson
  16. /**
  17. * Inverse camera response function is extracted for each brightness value by minimizing an objective
  18. * function as linear system. This algorithm uses all image pixels.
  19. *
  20. * For more information see CITE: RB99 .
  21. *
  22. * Member of `Photo`
  23. */
  24. CV_EXPORTS @interface CalibrateRobertson : CalibrateCRF
  25. #ifdef __cplusplus
  26. @property(readonly)cv::Ptr<cv::CalibrateRobertson> nativePtrCalibrateRobertson;
  27. #endif
  28. #ifdef __cplusplus
  29. - (instancetype)initWithNativePtr:(cv::Ptr<cv::CalibrateRobertson>)nativePtr;
  30. + (instancetype)fromNative:(cv::Ptr<cv::CalibrateRobertson>)nativePtr;
  31. #endif
  32. #pragma mark - Methods
  33. //
  34. // int cv::CalibrateRobertson::getMaxIter()
  35. //
  36. - (int)getMaxIter NS_SWIFT_NAME(getMaxIter());
  37. //
  38. // void cv::CalibrateRobertson::setMaxIter(int max_iter)
  39. //
  40. - (void)setMaxIter:(int)max_iter NS_SWIFT_NAME(setMaxIter(max_iter:));
  41. //
  42. // float cv::CalibrateRobertson::getThreshold()
  43. //
  44. - (float)getThreshold NS_SWIFT_NAME(getThreshold());
  45. //
  46. // void cv::CalibrateRobertson::setThreshold(float threshold)
  47. //
  48. - (void)setThreshold:(float)threshold NS_SWIFT_NAME(setThreshold(threshold:));
  49. //
  50. // Mat cv::CalibrateRobertson::getRadiance()
  51. //
  52. - (Mat*)getRadiance NS_SWIFT_NAME(getRadiance());
  53. @end
  54. NS_ASSUME_NONNULL_END