Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
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
Commits
82c54104
Commit
82c54104
authored
Mar 10, 2015
by
Erik Karlsson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix warnings on Win x64
parent
812edb5f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
denoising.cpp
modules/photo/src/denoising.cpp
+4
-4
No files found.
modules/photo/src/denoising.cpp
View file @
82c54104
...
@@ -55,7 +55,7 @@ void cv::fastNlMeansDenoising( InputArray _src, OutputArray _dst, float h,
...
@@ -55,7 +55,7 @@ void cv::fastNlMeansDenoising( InputArray _src, OutputArray _dst, float h,
void
cv
::
fastNlMeansDenoising
(
InputArray
_src
,
OutputArray
_dst
,
const
std
::
vector
<
float
>&
h
,
void
cv
::
fastNlMeansDenoising
(
InputArray
_src
,
OutputArray
_dst
,
const
std
::
vector
<
float
>&
h
,
int
templateWindowSize
,
int
searchWindowSize
)
int
templateWindowSize
,
int
searchWindowSize
)
{
{
int
hn
=
h
.
size
();
int
hn
=
(
int
)
h
.
size
();
CV_Assert
(
hn
==
1
||
hn
==
CV_MAT_CN
(
_src
.
type
()));
CV_Assert
(
hn
==
1
||
hn
==
CV_MAT_CN
(
_src
.
type
()));
Size
src_size
=
_src
.
size
();
Size
src_size
=
_src
.
size
();
...
@@ -126,7 +126,7 @@ void cv::fastNlMeansDenoisingAbs( InputArray _src, OutputArray _dst, float h,
...
@@ -126,7 +126,7 @@ void cv::fastNlMeansDenoisingAbs( InputArray _src, OutputArray _dst, float h,
void
cv
::
fastNlMeansDenoisingAbs
(
InputArray
_src
,
OutputArray
_dst
,
const
std
::
vector
<
float
>&
h
,
void
cv
::
fastNlMeansDenoisingAbs
(
InputArray
_src
,
OutputArray
_dst
,
const
std
::
vector
<
float
>&
h
,
int
templateWindowSize
,
int
searchWindowSize
)
int
templateWindowSize
,
int
searchWindowSize
)
{
{
int
hn
=
h
.
size
();
int
hn
=
(
int
)
h
.
size
();
CV_Assert
(
hn
==
1
||
hn
==
CV_MAT_CN
(
_src
.
type
()));
CV_Assert
(
hn
==
1
||
hn
==
CV_MAT_CN
(
_src
.
type
()));
Size
src_size
=
_src
.
size
();
Size
src_size
=
_src
.
size
();
...
@@ -309,7 +309,7 @@ void cv::fastNlMeansDenoisingMulti( InputArrayOfArrays _srcImgs, OutputArray _ds
...
@@ -309,7 +309,7 @@ void cv::fastNlMeansDenoisingMulti( InputArrayOfArrays _srcImgs, OutputArray _ds
srcImgs
,
imgToDenoiseIndex
,
srcImgs
,
imgToDenoiseIndex
,
temporalWindowSize
,
templateWindowSize
,
searchWindowSize
);
temporalWindowSize
,
templateWindowSize
,
searchWindowSize
);
int
hn
=
h
.
size
();
int
hn
=
(
int
)
h
.
size
();
CV_Assert
(
hn
==
1
||
hn
==
CV_MAT_CN
(
srcImgs
[
0
].
type
()));
CV_Assert
(
hn
==
1
||
hn
==
CV_MAT_CN
(
srcImgs
[
0
].
type
()));
_dst
.
create
(
srcImgs
[
0
].
size
(),
srcImgs
[
0
].
type
());
_dst
.
create
(
srcImgs
[
0
].
size
(),
srcImgs
[
0
].
type
());
...
@@ -385,7 +385,7 @@ void cv::fastNlMeansDenoisingMultiAbs( InputArrayOfArrays _srcImgs, OutputArray
...
@@ -385,7 +385,7 @@ void cv::fastNlMeansDenoisingMultiAbs( InputArrayOfArrays _srcImgs, OutputArray
srcImgs
,
imgToDenoiseIndex
,
srcImgs
,
imgToDenoiseIndex
,
temporalWindowSize
,
templateWindowSize
,
searchWindowSize
);
temporalWindowSize
,
templateWindowSize
,
searchWindowSize
);
int
hn
=
h
.
size
();
int
hn
=
(
int
)
h
.
size
();
CV_Assert
(
hn
==
1
||
hn
==
CV_MAT_CN
(
srcImgs
[
0
].
type
()));
CV_Assert
(
hn
==
1
||
hn
==
CV_MAT_CN
(
srcImgs
[
0
].
type
()));
_dst
.
create
(
srcImgs
[
0
].
size
(),
srcImgs
[
0
].
type
());
_dst
.
create
(
srcImgs
[
0
].
size
(),
srcImgs
[
0
].
type
());
...
...
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