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
d102ea96
Commit
d102ea96
authored
Sep 02, 2016
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7210 from mshabunin:fix-warnings
parents
8104db22
dc704d77
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
5 additions
and
7 deletions
+5
-7
CMakeLists.txt
3rdparty/libtiff/CMakeLists.txt
+1
-1
OpenCVCompilerOptions.cmake
cmake/OpenCVCompilerOptions.cmake
+1
-0
utility.hpp
modules/core/include/opencv2/core/utility.hpp
+1
-1
perf_umat.cpp
modules/core/perf/perf_umat.cpp
+0
-3
test_ds.cpp
modules/core/test/test_ds.cpp
+1
-1
features2d.hpp
modules/features2d/include/opencv2/features2d.hpp
+1
-1
flann.hpp
modules/flann/include/opencv2/flann.hpp
+0
-0
No files found.
3rdparty/libtiff/CMakeLists.txt
View file @
d102ea96
...
...
@@ -95,7 +95,7 @@ ocv_warnings_disable(CMAKE_CXX_FLAGS /wd4267 /wd4305 /wd4306) # vs2008 Win64
ocv_warnings_disable
(
CMAKE_CXX_FLAGS /wd4703
)
# vs2012
ocv_warnings_disable
(
CMAKE_CXX_FLAGS /wd4456 /wd4457 /wd4312
)
# vs2015
ocv_warnings_disable
(
CMAKE_C_FLAGS /wd4267 /wd4244 /wd4018
)
ocv_warnings_disable
(
CMAKE_C_FLAGS /wd4267 /wd4244 /wd4018
/wd4311 /wd4312
)
if
(
UNIX
AND
(
CMAKE_COMPILER_IS_GNUCXX OR CV_ICC
))
set
(
CMAKE_C_FLAGS
"
${
CMAKE_C_FLAGS
}
-fPIC"
)
...
...
cmake/OpenCVCompilerOptions.cmake
View file @
d102ea96
...
...
@@ -97,6 +97,7 @@ if(CMAKE_COMPILER_IS_GNUCXX)
add_extra_compiler_option
(
-Wno-narrowing
)
add_extra_compiler_option
(
-Wno-delete-non-virtual-dtor
)
add_extra_compiler_option
(
-Wno-unnamed-type-template-args
)
add_extra_compiler_option
(
-Wno-comment
)
endif
()
add_extra_compiler_option
(
-fdiagnostics-show-option
)
...
...
modules/core/include/opencv2/core/utility.hpp
View file @
d102ea96
...
...
@@ -1126,7 +1126,7 @@ CV_EXPORTS InstrNode* getTrace();
CV_EXPORTS
void
resetTrace
();
CV_EXPORTS
void
setFlags
(
int
modeFlags
);
CV_EXPORTS
int
getFlags
();
}
;
}
}
//namespace cv
...
...
modules/core/perf/perf_umat.cpp
View file @
d102ea96
...
...
@@ -13,7 +13,6 @@ using namespace ::testing;
using
std
::
tr1
::
tuple
;
using
std
::
tr1
::
get
;
namespace
{
struct
OpenCLState
{
...
...
@@ -64,5 +63,3 @@ OCL_PERF_TEST_P(UMatTest, CustomPtr, Combine(Values(sz1080p, sz2160p), Bool(), :
SANITY_CHECK_NOTHING
();
}
}
// namespace cvtest
modules/core/test/test_ds.cpp
View file @
d102ea96
...
...
@@ -56,7 +56,7 @@ static void cvTsSimpleSeqShiftAndCopy( CvTsSimpleSeq* seq, int from_idx, int to_
(
seq
->
count
-
from_idx
)
*
elem_size
);
}
seq
->
count
+=
to_idx
-
from_idx
;
if
(
elem
&&
to_idx
>
from_idx
)
if
(
elem
)
memcpy
(
seq
->
array
+
from_idx
*
elem_size
,
elem
,
(
to_idx
-
from_idx
)
*
elem_size
);
}
...
...
modules/features2d/include/opencv2/features2d.hpp
View file @
d102ea96
...
...
@@ -1022,7 +1022,7 @@ protected:
/** @brief Flann-based descriptor matcher.
This matcher trains
flann::Index_
on a train descriptor collection and calls its nearest search
This matcher trains
cv::flann::Index
on a train descriptor collection and calls its nearest search
methods to find the best matches. So, this matcher may be faster when matching a large train
collection than the brute force matcher. FlannBasedMatcher does not support masking permissible
matches of descriptor sets because flann::Index does not support this. :
...
...
modules/flann/include/opencv2/flann.hpp
View file @
d102ea96
This diff is collapsed.
Click to expand it.
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