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
b4d95b14
Commit
b4d95b14
authored
Jul 03, 2013
by
Vladislav Vinogradov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed warnings in gpu modules from VS 2012
parent
70deda35
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
test_precomp.hpp
modules/gpuarithm/test/test_precomp.hpp
+2
-0
stereobm.cpp
modules/gpustereo/src/stereobm.cpp
+2
-2
No files found.
modules/gpuarithm/test/test_precomp.hpp
View file @
b4d95b14
...
...
@@ -51,6 +51,8 @@
#ifndef __OPENCV_TEST_PRECOMP_HPP__
#define __OPENCV_TEST_PRECOMP_HPP__
#include <functional>
#include "opencv2/ts.hpp"
#include "opencv2/ts/gpu_test.hpp"
...
...
modules/gpustereo/src/stereobm.cpp
View file @
b4d95b14
...
...
@@ -98,8 +98,8 @@ namespace
int
getPreFilterCap
()
const
{
return
preFilterCap_
;
}
void
setPreFilterCap
(
int
preFilterCap
)
{
preFilterCap_
=
preFilterCap
;
}
int
getTextureThreshold
()
const
{
return
avergeTexThreshold_
;
}
void
setTextureThreshold
(
int
textureThreshold
)
{
avergeTexThreshold_
=
textureThreshold
;
}
int
getTextureThreshold
()
const
{
return
static_cast
<
int
>
(
avergeTexThreshold_
)
;
}
void
setTextureThreshold
(
int
textureThreshold
)
{
avergeTexThreshold_
=
static_cast
<
float
>
(
textureThreshold
)
;
}
int
getUniquenessRatio
()
const
{
return
0
;
}
void
setUniquenessRatio
(
int
/*uniquenessRatio*/
)
{}
...
...
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