HistogramPhaseUnwrappingParams.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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/phase_unwrapping.hpp"
  8. #import "opencv2/phase_unwrapping/histogramphaseunwrapping.hpp"
  9. #else
  10. #define CV_EXPORTS
  11. #endif
  12. #import <Foundation/Foundation.h>
  13. NS_ASSUME_NONNULL_BEGIN
  14. // C++: class Params
  15. /**
  16. * Parameters of phaseUnwrapping constructor.
  17. *
  18. * width Phase map width.
  19. * height Phase map height.
  20. * histThresh Bins in the histogram are not of equal size. Default value is 3*pi*pi. The one before "histThresh" value are smaller.
  21. * nbrOfSmallBins Number of bins between 0 and "histThresh". Default value is 10.
  22. * nbrOfLargeBins Number of bins between "histThresh" and 32*pi*pi (highest edge reliability value). Default value is 5.
  23. *
  24. * Member of `Phase_unwrapping`
  25. */
  26. CV_EXPORTS @interface HistogramPhaseUnwrappingParams : NSObject
  27. #ifdef __cplusplus
  28. @property(readonly)cv::Ptr<cv::phase_unwrapping::HistogramPhaseUnwrapping::Params> nativePtr;
  29. #endif
  30. #ifdef __cplusplus
  31. - (instancetype)initWithNativePtr:(cv::Ptr<cv::phase_unwrapping::HistogramPhaseUnwrapping::Params>)nativePtr;
  32. + (instancetype)fromNative:(cv::Ptr<cv::phase_unwrapping::HistogramPhaseUnwrapping::Params>)nativePtr;
  33. #endif
  34. #pragma mark - Methods
  35. //
  36. // cv::phase_unwrapping::HistogramPhaseUnwrapping::Params::Params()
  37. //
  38. - (instancetype)init;
  39. //
  40. // C++: int cv::phase_unwrapping::HistogramPhaseUnwrapping::Params::width
  41. //
  42. @property int width;
  43. //
  44. // C++: int cv::phase_unwrapping::HistogramPhaseUnwrapping::Params::height
  45. //
  46. @property int height;
  47. //
  48. // C++: float cv::phase_unwrapping::HistogramPhaseUnwrapping::Params::histThresh
  49. //
  50. @property float histThresh;
  51. //
  52. // C++: int cv::phase_unwrapping::HistogramPhaseUnwrapping::Params::nbrOfSmallBins
  53. //
  54. @property int nbrOfSmallBins;
  55. //
  56. // C++: int cv::phase_unwrapping::HistogramPhaseUnwrapping::Params::nbrOfLargeBins
  57. //
  58. @property int nbrOfLargeBins;
  59. @end
  60. NS_ASSUME_NONNULL_END