MergeRobertson.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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 "MergeExposures.h"
  13. @class Mat;
  14. NS_ASSUME_NONNULL_BEGIN
  15. // C++: class MergeRobertson
  16. /**
  17. * The resulting HDR image is calculated as weighted average of the exposures considering exposure
  18. * values and camera response.
  19. *
  20. * For more information see CITE: RB99 .
  21. *
  22. * Member of `Photo`
  23. */
  24. CV_EXPORTS @interface MergeRobertson : MergeExposures
  25. #ifdef __cplusplus
  26. @property(readonly)cv::Ptr<cv::MergeRobertson> nativePtrMergeRobertson;
  27. #endif
  28. #ifdef __cplusplus
  29. - (instancetype)initWithNativePtr:(cv::Ptr<cv::MergeRobertson>)nativePtr;
  30. + (instancetype)fromNative:(cv::Ptr<cv::MergeRobertson>)nativePtr;
  31. #endif
  32. #pragma mark - Methods
  33. //
  34. // void cv::MergeRobertson::process(vector_Mat src, Mat& dst, Mat times, Mat response)
  35. //
  36. - (void)process:(NSArray<Mat*>*)src dst:(Mat*)dst times:(Mat*)times response:(Mat*)response NS_SWIFT_NAME(process(src:dst:times:response:));
  37. //
  38. // void cv::MergeRobertson::process(vector_Mat src, Mat& dst, Mat times)
  39. //
  40. - (void)process:(NSArray<Mat*>*)src dst:(Mat*)dst times:(Mat*)times NS_SWIFT_NAME(process(src:dst:times:));
  41. @end
  42. NS_ASSUME_NONNULL_END