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
577546cc
Unverified
Commit
577546cc
authored
Jun 15, 2018
by
Philipp Hasper
Committed by
GitHub
Jun 15, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added Size_::aspectRatio
parent
0d6518aa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
types.hpp
modules/core/include/opencv2/core/types.hpp
+8
-0
No files found.
modules/core/include/opencv2/core/types.hpp
View file @
577546cc
...
...
@@ -322,6 +322,8 @@ public:
Size_
&
operator
=
(
const
Size_
&
sz
);
//! the area (width*height)
_Tp
area
()
const
;
//! aspect ratio (width/height)
double
aspectRatio
()
const
;
//! true if empty
bool
empty
()
const
;
...
...
@@ -1670,6 +1672,12 @@ _Tp Size_<_Tp>::area() const
return
result
;
}
template
<
typename
_Tp
>
inline
double
Size_
<
_Tp
>::
aspectRatio
()
const
{
return
width
/
static_cast
<
double
>
(
height
);
}
template
<
typename
_Tp
>
inline
bool
Size_
<
_Tp
>::
empty
()
const
{
...
...
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