TonemapMantiuk.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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 "Tonemap.h"
  13. NS_ASSUME_NONNULL_BEGIN
  14. // C++: class TonemapMantiuk
  15. /**
  16. * This algorithm transforms image to contrast using gradients on all levels of gaussian pyramid,
  17. * transforms contrast values to HVS response and scales the response. After this the image is
  18. * reconstructed from new contrast values.
  19. *
  20. * For more information see CITE: MM06 .
  21. *
  22. * Member of `Photo`
  23. */
  24. CV_EXPORTS @interface TonemapMantiuk : Tonemap
  25. #ifdef __cplusplus
  26. @property(readonly)cv::Ptr<cv::TonemapMantiuk> nativePtrTonemapMantiuk;
  27. #endif
  28. #ifdef __cplusplus
  29. - (instancetype)initWithNativePtr:(cv::Ptr<cv::TonemapMantiuk>)nativePtr;
  30. + (instancetype)fromNative:(cv::Ptr<cv::TonemapMantiuk>)nativePtr;
  31. #endif
  32. #pragma mark - Methods
  33. //
  34. // float cv::TonemapMantiuk::getScale()
  35. //
  36. - (float)getScale NS_SWIFT_NAME(getScale());
  37. //
  38. // void cv::TonemapMantiuk::setScale(float scale)
  39. //
  40. - (void)setScale:(float)scale NS_SWIFT_NAME(setScale(scale:));
  41. //
  42. // float cv::TonemapMantiuk::getSaturation()
  43. //
  44. - (float)getSaturation NS_SWIFT_NAME(getSaturation());
  45. //
  46. // void cv::TonemapMantiuk::setSaturation(float saturation)
  47. //
  48. - (void)setSaturation:(float)saturation NS_SWIFT_NAME(setSaturation(saturation:));
  49. @end
  50. NS_ASSUME_NONNULL_END