1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-20 12:55:15 +08:00

Merge pull request #2058 from shimat:fix_superres_typo

This commit is contained in:
Alexander Alekhin
2019-03-29 13:29:24 +00:00
3 changed files with 8 additions and 8 deletions

View File

@@ -123,10 +123,10 @@ namespace cv
virtual void setTau(double val) = 0; virtual void setTau(double val) = 0;
//! @brief Weight parameter to balance data term and smoothness term //! @brief Weight parameter to balance data term and smoothness term
/** @see setLabmda */ /** @see setLambda */
virtual double getLabmda() const = 0; virtual double getLambda() const = 0;
/** @copybrief getLabmda @see getLabmda */ /** @copybrief getLambda @see getLambda */
virtual void setLabmda(double val) = 0; virtual void setLambda(double val) = 0;
//! @brief Parameter of spacial distribution in Bilateral-TV //! @brief Parameter of spacial distribution in Bilateral-TV
/** @see setAlpha */ /** @see setAlpha */

View File

@@ -478,8 +478,8 @@ namespace
inline void setIterations(int val) CV_OVERRIDE { iterations_ = val; } inline void setIterations(int val) CV_OVERRIDE { iterations_ = val; }
inline double getTau() const CV_OVERRIDE { return tau_; } inline double getTau() const CV_OVERRIDE { return tau_; }
inline void setTau(double val) CV_OVERRIDE { tau_ = val; } inline void setTau(double val) CV_OVERRIDE { tau_ = val; }
inline double getLabmda() const CV_OVERRIDE { return lambda_; } inline double getLambda() const CV_OVERRIDE { return lambda_; }
inline void setLabmda(double val) CV_OVERRIDE { lambda_ = val; } inline void setLambda(double val) CV_OVERRIDE { lambda_ = val; }
inline double getAlpha() const CV_OVERRIDE { return alpha_; } inline double getAlpha() const CV_OVERRIDE { return alpha_; }
inline void setAlpha(double val) CV_OVERRIDE { alpha_ = val; } inline void setAlpha(double val) CV_OVERRIDE { alpha_ = val; }
inline int getKernelSize() const CV_OVERRIDE { return btvKernelSize_; } inline int getKernelSize() const CV_OVERRIDE { return btvKernelSize_; }

View File

@@ -223,8 +223,8 @@ namespace
inline void setIterations(int val) CV_OVERRIDE { iterations_ = val; } inline void setIterations(int val) CV_OVERRIDE { iterations_ = val; }
inline double getTau() const CV_OVERRIDE { return tau_; } inline double getTau() const CV_OVERRIDE { return tau_; }
inline void setTau(double val) CV_OVERRIDE { tau_ = val; } inline void setTau(double val) CV_OVERRIDE { tau_ = val; }
inline double getLabmda() const CV_OVERRIDE { return lambda_; } inline double getLambda() const CV_OVERRIDE { return lambda_; }
inline void setLabmda(double val) CV_OVERRIDE { lambda_ = val; } inline void setLambda(double val) CV_OVERRIDE { lambda_ = val; }
inline double getAlpha() const CV_OVERRIDE { return alpha_; } inline double getAlpha() const CV_OVERRIDE { return alpha_; }
inline void setAlpha(double val) CV_OVERRIDE { alpha_ = val; } inline void setAlpha(double val) CV_OVERRIDE { alpha_ = val; }
inline int getKernelSize() const CV_OVERRIDE { return btvKernelSize_; } inline int getKernelSize() const CV_OVERRIDE { return btvKernelSize_; }