Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
16efd469
Commit
16efd469
authored
Jul 03, 2015
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a version of set_aspect_ratio() that works for drectangle.
parent
ad9a9e6e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
54 additions
and
0 deletions
+54
-0
drectangle.h
dlib/geometry/drectangle.h
+24
-0
drectangle_abstract.h
dlib/geometry/drectangle_abstract.h
+30
-0
No files found.
dlib/geometry/drectangle.h
View file @
16efd469
...
...
@@ -385,6 +385,15 @@ namespace dlib
return
drectangle
(
p
.
x
()
-
width
/
2
,
p
.
y
()
-
height
/
2
,
p
.
x
()
+
width
/
2
,
p
.
y
()
+
height
/
2
);
}
inline
drectangle
centered_drect
(
const
drectangle
&
rect
,
double
width
,
double
height
)
{
return
centered_drect
(
dcenter
(
rect
),
width
,
height
);
}
inline
const
drectangle
shrink_rect
(
const
drectangle
&
rect
,
double
num
...
...
@@ -419,6 +428,21 @@ namespace dlib
return
shrink_rect
(
rect
,
-
width
,
-
height
);
}
inline
drectangle
set_aspect_ratio
(
const
drectangle
&
rect
,
double
ratio
)
{
DLIB_ASSERT
(
ratio
>
0
,
"
\t
drectangle set_aspect_ratio()"
<<
"
\n\t
ratio: "
<<
ratio
);
const
double
h
=
std
::
sqrt
(
rect
.
area
()
/
ratio
);
const
double
w
=
h
*
ratio
;
return
centered_drect
(
rect
,
w
,
h
);
}
// ----------------------------------------------------------------------------------------
}
...
...
dlib/geometry/drectangle_abstract.h
View file @
16efd469
...
...
@@ -503,6 +503,18 @@ namespace dlib
- R.height() == height
!*/
// ----------------------------------------------------------------------------------------
drectangle
centered_drect
(
const
drectangle
&
rect
,
double
width
,
double
height
);
/*!
ensures
- returns centered_drect(center(rect), width, height)
!*/
// ----------------------------------------------------------------------------------------
const
drectangle
shrink_rect
(
...
...
@@ -554,6 +566,24 @@ namespace dlib
(i.e. grows the given drectangle by expanding its border)
!*/
// ----------------------------------------------------------------------------------------
drectangle
set_aspect_ratio
(
const
drectangle
&
rect
,
double
ratio
);
/*!
requires
- ratio > 0
ensures
- This function reshapes the given rectangle so that it has the given aspect
ratio. In particular, this means we return a rectangle R such that the
following equations are true:
- R.width()/R.height() == ratio
- R.area() == rect.area()
- dcenter(rect) == dcenter(R)
!*/
// ----------------------------------------------------------------------------------------
}
...
...
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