Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv_contrib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv_contrib
Commits
9a5f442d
Commit
9a5f442d
authored
Mar 27, 2019
by
shimat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix SuperResolution::getLabmda/setlabmda typo
parent
b7e78523
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
superres.hpp
modules/superres/include/opencv2/superres.hpp
+4
-4
btv_l1.cpp
modules/superres/src/btv_l1.cpp
+2
-2
btv_l1_cuda.cpp
modules/superres/src/btv_l1_cuda.cpp
+2
-2
No files found.
modules/superres/include/opencv2/superres.hpp
View file @
9a5f442d
...
...
@@ -123,10 +123,10 @@ namespace cv
virtual
void
setTau
(
double
val
)
=
0
;
//! @brief Weight parameter to balance data term and smoothness term
/** @see setLa
bm
da */
virtual
double
getLa
bm
da
()
const
=
0
;
/** @copybrief getLa
bmda @see getLabm
da */
virtual
void
setLa
bm
da
(
double
val
)
=
0
;
/** @see setLa
mb
da */
virtual
double
getLa
mb
da
()
const
=
0
;
/** @copybrief getLa
mbda @see getLamb
da */
virtual
void
setLa
mb
da
(
double
val
)
=
0
;
//! @brief Parameter of spacial distribution in Bilateral-TV
/** @see setAlpha */
...
...
modules/superres/src/btv_l1.cpp
View file @
9a5f442d
...
...
@@ -478,8 +478,8 @@ namespace
inline
void
setIterations
(
int
val
)
CV_OVERRIDE
{
iterations_
=
val
;
}
inline
double
getTau
()
const
CV_OVERRIDE
{
return
tau_
;
}
inline
void
setTau
(
double
val
)
CV_OVERRIDE
{
tau_
=
val
;
}
inline
double
getLa
bm
da
()
const
CV_OVERRIDE
{
return
lambda_
;
}
inline
void
setLa
bm
da
(
double
val
)
CV_OVERRIDE
{
lambda_
=
val
;
}
inline
double
getLa
mb
da
()
const
CV_OVERRIDE
{
return
lambda_
;
}
inline
void
setLa
mb
da
(
double
val
)
CV_OVERRIDE
{
lambda_
=
val
;
}
inline
double
getAlpha
()
const
CV_OVERRIDE
{
return
alpha_
;
}
inline
void
setAlpha
(
double
val
)
CV_OVERRIDE
{
alpha_
=
val
;
}
inline
int
getKernelSize
()
const
CV_OVERRIDE
{
return
btvKernelSize_
;
}
...
...
modules/superres/src/btv_l1_cuda.cpp
View file @
9a5f442d
...
...
@@ -223,8 +223,8 @@ namespace
inline
void
setIterations
(
int
val
)
CV_OVERRIDE
{
iterations_
=
val
;
}
inline
double
getTau
()
const
CV_OVERRIDE
{
return
tau_
;
}
inline
void
setTau
(
double
val
)
CV_OVERRIDE
{
tau_
=
val
;
}
inline
double
getLa
bm
da
()
const
CV_OVERRIDE
{
return
lambda_
;
}
inline
void
setLa
bm
da
(
double
val
)
CV_OVERRIDE
{
lambda_
=
val
;
}
inline
double
getLa
mb
da
()
const
CV_OVERRIDE
{
return
lambda_
;
}
inline
void
setLa
mb
da
(
double
val
)
CV_OVERRIDE
{
lambda_
=
val
;
}
inline
double
getAlpha
()
const
CV_OVERRIDE
{
return
alpha_
;
}
inline
void
setAlpha
(
double
val
)
CV_OVERRIDE
{
alpha_
=
val
;
}
inline
int
getKernelSize
()
const
CV_OVERRIDE
{
return
btvKernelSize_
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment