File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -123,10 +123,10 @@ namespace cv
123
123
virtual void setTau (double val) = 0;
124
124
125
125
// ! @brief Weight parameter to balance data term and smoothness term
126
- /* * @see setLabmda */
127
- virtual double getLabmda () const = 0;
128
- /* * @copybrief getLabmda @see getLabmda */
129
- virtual void setLabmda (double val) = 0;
126
+ /* * @see setLambda */
127
+ virtual double getLambda () const = 0;
128
+ /* * @copybrief getLambda @see getLambda */
129
+ virtual void setLambda (double val) = 0;
130
130
131
131
// ! @brief Parameter of spacial distribution in Bilateral-TV
132
132
/* * @see setAlpha */
Original file line number Diff line number Diff line change @@ -478,8 +478,8 @@ namespace
478
478
inline void setIterations (int val) CV_OVERRIDE { iterations_ = val; }
479
479
inline double getTau () const CV_OVERRIDE { return tau_; }
480
480
inline void setTau (double val) CV_OVERRIDE { tau_ = val; }
481
- inline double getLabmda () const CV_OVERRIDE { return lambda_; }
482
- inline void setLabmda (double val) CV_OVERRIDE { lambda_ = val; }
481
+ inline double getLambda () const CV_OVERRIDE { return lambda_; }
482
+ inline void setLambda (double val) CV_OVERRIDE { lambda_ = val; }
483
483
inline double getAlpha () const CV_OVERRIDE { return alpha_; }
484
484
inline void setAlpha (double val) CV_OVERRIDE { alpha_ = val; }
485
485
inline int getKernelSize () const CV_OVERRIDE { return btvKernelSize_; }
Original file line number Diff line number Diff line change @@ -223,8 +223,8 @@ namespace
223
223
inline void setIterations (int val) CV_OVERRIDE { iterations_ = val; }
224
224
inline double getTau () const CV_OVERRIDE { return tau_; }
225
225
inline void setTau (double val) CV_OVERRIDE { tau_ = val; }
226
- inline double getLabmda () const CV_OVERRIDE { return lambda_; }
227
- inline void setLabmda (double val) CV_OVERRIDE { lambda_ = val; }
226
+ inline double getLambda () const CV_OVERRIDE { return lambda_; }
227
+ inline void setLambda (double val) CV_OVERRIDE { lambda_ = val; }
228
228
inline double getAlpha () const CV_OVERRIDE { return alpha_; }
229
229
inline void setAlpha (double val) CV_OVERRIDE { alpha_ = val; }
230
230
inline int getKernelSize () const CV_OVERRIDE { return btvKernelSize_; }
You can’t perform that action at this time.
0 commit comments