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
72c5ac37
Commit
72c5ac37
authored
Mar 27, 2020
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #16915 from alalek:build_warnings
parents
1eba7f60
b4b4d212
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
11 deletions
+4
-11
chessboard.cpp
modules/calib3d/src/chessboard.cpp
+0
-9
chessboard.hpp
modules/calib3d/src/chessboard.hpp
+0
-2
parallel.cpp
modules/core/src/parallel.cpp
+3
-0
CMakeLists.txt
modules/dnn/CMakeLists.txt
+1
-0
No files found.
modules/calib3d/src/chessboard.cpp
View file @
72c5ac37
...
...
@@ -797,15 +797,6 @@ Ellipse::Ellipse(const cv::Point2f &_center, const cv::Size2f &_axes, float _ang
{
}
Ellipse
::
Ellipse
(
const
Ellipse
&
other
)
{
center
=
other
.
center
;
axes
=
other
.
axes
;
angle
=
other
.
angle
;
cosf
=
other
.
cosf
;
sinf
=
other
.
sinf
;
}
const
cv
::
Size2f
&
Ellipse
::
getAxes
()
const
{
return
axes
;
...
...
modules/calib3d/src/chessboard.hpp
View file @
72c5ac37
...
...
@@ -111,8 +111,6 @@ class Ellipse
public
:
Ellipse
();
Ellipse
(
const
cv
::
Point2f
&
center
,
const
cv
::
Size2f
&
axes
,
float
angle
);
Ellipse
(
const
Ellipse
&
other
);
void
draw
(
cv
::
InputOutputArray
img
,
const
cv
::
Scalar
&
color
=
cv
::
Scalar
::
all
(
120
))
const
;
bool
contains
(
const
cv
::
Point2f
&
pt
)
const
;
...
...
modules/core/src/parallel.cpp
View file @
72c5ac37
...
...
@@ -95,6 +95,9 @@
*/
#if defined HAVE_TBB
#ifndef TBB_SUPPRESS_DEPRECATED_MESSAGES // supress warning
#define TBB_SUPPRESS_DEPRECATED_MESSAGES 1
#endif
#include "tbb/tbb.h"
#include "tbb/task.h"
#include "tbb/tbb_stddef.h"
...
...
modules/dnn/CMakeLists.txt
View file @
72c5ac37
...
...
@@ -122,6 +122,7 @@ endif()
ocv_module_include_directories
(
${
include_dirs
}
)
if
(
CMAKE_CXX_COMPILER_ID STREQUAL
"GNU"
)
ocv_append_source_files_cxx_compiler_options
(
fw_srcs
"-Wno-suggest-override"
)
# GCC
ocv_append_source_files_cxx_compiler_options
(
fw_srcs
"-Wno-array-bounds"
)
# GCC 9.3.0 (Ubuntu 20.04)
elseif
(
CMAKE_CXX_COMPILER_ID STREQUAL
"Clang"
)
ocv_append_source_files_cxx_compiler_options
(
fw_srcs
"-Wno-inconsistent-missing-override"
)
# Clang
endif
()
...
...
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