1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- //
- // This file is auto-generated. Please don't modify it!
- //
- #pragma once
- #ifdef __cplusplus
- //#import "opencv.hpp"
- #import "opencv2/photo.hpp"
- #else
- #define CV_EXPORTS
- #endif
- #import <Foundation/Foundation.h>
- #import "Tonemap.h"
- NS_ASSUME_NONNULL_BEGIN
- // C++: class TonemapMantiuk
- /**
- * This algorithm transforms image to contrast using gradients on all levels of gaussian pyramid,
- * transforms contrast values to HVS response and scales the response. After this the image is
- * reconstructed from new contrast values.
- *
- * For more information see CITE: MM06 .
- *
- * Member of `Photo`
- */
- CV_EXPORTS @interface TonemapMantiuk : Tonemap
- #ifdef __cplusplus
- @property(readonly)cv::Ptr<cv::TonemapMantiuk> nativePtrTonemapMantiuk;
- #endif
- #ifdef __cplusplus
- - (instancetype)initWithNativePtr:(cv::Ptr<cv::TonemapMantiuk>)nativePtr;
- + (instancetype)fromNative:(cv::Ptr<cv::TonemapMantiuk>)nativePtr;
- #endif
- #pragma mark - Methods
- //
- // float cv::TonemapMantiuk::getScale()
- //
- - (float)getScale NS_SWIFT_NAME(getScale());
- //
- // void cv::TonemapMantiuk::setScale(float scale)
- //
- - (void)setScale:(float)scale NS_SWIFT_NAME(setScale(scale:));
- //
- // float cv::TonemapMantiuk::getSaturation()
- //
- - (float)getSaturation NS_SWIFT_NAME(getSaturation());
- //
- // void cv::TonemapMantiuk::setSaturation(float saturation)
- //
- - (void)setSaturation:(float)saturation NS_SWIFT_NAME(setSaturation(saturation:));
- @end
- NS_ASSUME_NONNULL_END
|