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
b4b4d212
Commit
b4b4d212
authored
Mar 26, 2020
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
eliminate build warnings
parent
c303aaa9
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 @
b4b4d212
...
@@ -797,15 +797,6 @@ Ellipse::Ellipse(const cv::Point2f &_center, const cv::Size2f &_axes, float _ang
...
@@ -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
const
cv
::
Size2f
&
Ellipse
::
getAxes
()
const
{
{
return
axes
;
return
axes
;
...
...
modules/calib3d/src/chessboard.hpp
View file @
b4b4d212
...
@@ -111,8 +111,6 @@ class Ellipse
...
@@ -111,8 +111,6 @@ class Ellipse
public
:
public
:
Ellipse
();
Ellipse
();
Ellipse
(
const
cv
::
Point2f
&
center
,
const
cv
::
Size2f
&
axes
,
float
angle
);
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
;
void
draw
(
cv
::
InputOutputArray
img
,
const
cv
::
Scalar
&
color
=
cv
::
Scalar
::
all
(
120
))
const
;
bool
contains
(
const
cv
::
Point2f
&
pt
)
const
;
bool
contains
(
const
cv
::
Point2f
&
pt
)
const
;
...
...
modules/core/src/parallel.cpp
View file @
b4b4d212
...
@@ -95,6 +95,9 @@
...
@@ -95,6 +95,9 @@
*/
*/
#if defined HAVE_TBB
#if defined HAVE_TBB
#ifndef TBB_SUPPRESS_DEPRECATED_MESSAGES // supress warning
#define TBB_SUPPRESS_DEPRECATED_MESSAGES 1
#endif
#include "tbb/tbb.h"
#include "tbb/tbb.h"
#include "tbb/task.h"
#include "tbb/task.h"
#include "tbb/tbb_stddef.h"
#include "tbb/tbb_stddef.h"
...
...
modules/dnn/CMakeLists.txt
View file @
b4b4d212
...
@@ -122,6 +122,7 @@ endif()
...
@@ -122,6 +122,7 @@ endif()
ocv_module_include_directories
(
${
include_dirs
}
)
ocv_module_include_directories
(
${
include_dirs
}
)
if
(
CMAKE_CXX_COMPILER_ID STREQUAL
"GNU"
)
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-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"
)
elseif
(
CMAKE_CXX_COMPILER_ID STREQUAL
"Clang"
)
ocv_append_source_files_cxx_compiler_options
(
fw_srcs
"-Wno-inconsistent-missing-override"
)
# Clang
ocv_append_source_files_cxx_compiler_options
(
fw_srcs
"-Wno-inconsistent-missing-override"
)
# Clang
endif
()
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