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
b8adc045
Commit
b8adc045
authored
Sep 06, 2012
by
Andrey Kamaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Android build warnings
parent
b8767f5f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
CMakeLists.txt
3rdparty/openexr/CMakeLists.txt
+1
-1
brisk.cpp
modules/features2d/src/brisk.cpp
+1
-1
ts.hpp
modules/ts/include/opencv2/ts/ts.hpp
+1
-1
No files found.
3rdparty/openexr/CMakeLists.txt
View file @
b8adc045
...
...
@@ -37,7 +37,7 @@ endif()
source_group
(
"Include"
FILES
${
lib_hdrs
}
)
source_group
(
"Src"
FILES
${
lib_srcs
}
)
ocv_warnings_disable
(
CMAKE_CXX_FLAGS -Wshadow -Wunused -Wsign-compare -Wundef -Wmissing-declarations -Wuninitialized -Wswitch -Wparentheses
)
ocv_warnings_disable
(
CMAKE_CXX_FLAGS -Wshadow -Wunused -Wsign-compare -Wundef -Wmissing-declarations -Wuninitialized -Wswitch -Wparentheses
-Warray-bounds -Wextra
)
ocv_warnings_disable
(
CMAKE_CXX_FLAGS /wd4018 /wd4099 /wd4100 /wd4101 /wd4127 /wd4189 /wd4245 /wd4305 /wd4389 /wd4512 /wd4701 /wd4702 /wd4706 /wd4800
)
# vs2005
ocv_warnings_disable
(
CMAKE_CXX_FLAGS /wd4334
)
# vs2005 Win64
ocv_warnings_disable
(
CMAKE_CXX_FLAGS /wd4244
)
# vs2008
...
...
modules/features2d/src/brisk.cpp
View file @
b8adc045
...
...
@@ -1182,7 +1182,7 @@ BriskScaleSpace::refine3D(const int layer, const int x_layer, const int y_layer,
const
int
center
=
thisLayer
.
getAgastScore
(
x_layer
,
y_layer
,
1
);
// check and get above maximum:
float
delta_x_above
,
delta_y_above
;
float
delta_x_above
=
0
,
delta_y_above
=
0
;
float
max_above
=
getScoreMaxAbove
(
layer
,
x_layer
,
y_layer
,
center
,
ismax
,
delta_x_above
,
delta_y_above
);
if
(
!
ismax
)
...
...
modules/ts/include/opencv2/ts/ts.hpp
View file @
b8adc045
...
...
@@ -12,7 +12,7 @@
#ifdef ANDROID
# include <android/api-level.h>
# define GTEST_HAS_CLONE (__ANDROID_API__ > 7 &&
__arm
__)
# define GTEST_HAS_CLONE (__ANDROID_API__ > 7 &&
!defined __i386
__)
# define GTEST_HAS_POSIX_RE (__ANDROID_API__ > 7)
# if defined _GLIBCXX_USE_WCHAR_T && _GLIBCXX_USE_WCHAR_T
# define GTEST_HAS_STD_WSTRING 1
...
...
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