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
7742c575
Commit
7742c575
authored
Nov 14, 2013
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made rotate_image() return a transformation object that defines the point mapping
between the input and output images.
parent
478af745
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
11 deletions
+16
-11
interpolation.h
dlib/image_transforms/interpolation.h
+10
-9
interpolation_abstract.h
dlib/image_transforms/interpolation_abstract.h
+6
-2
No files found.
dlib/image_transforms/interpolation.h
View file @
7742c575
...
...
@@ -411,7 +411,7 @@ namespace dlib
typename
image_type2
,
typename
interpolation_type
>
void
rotate_image
(
point_transform_affine
rotate_image
(
const
image_type1
&
in_img
,
image_type2
&
out_img
,
double
angle
,
...
...
@@ -420,7 +420,7 @@ namespace dlib
{
// make sure requires clause is not broken
DLIB_ASSERT
(
is_same_object
(
in_img
,
out_img
)
==
false
,
"
\t
void
rotate_image()"
"
\t
point_transform_affine
rotate_image()"
<<
"
\n\t
Invalid inputs were given to this function."
<<
"
\n\t
is_same_object(in_img, out_img): "
<<
is_same_object
(
in_img
,
out_img
)
);
...
...
@@ -438,8 +438,9 @@ namespace dlib
const
matrix
<
double
,
2
,
2
>
R
=
rotation_matrix
(
angle
);
transform_image
(
in_img
,
out_img
,
interp
,
point_transform_affine
(
R
,
-
R
*
dcenter
(
get_rect
(
out_img
))
+
dcenter
(
rimg
)));
point_transform_affine
trans
=
point_transform_affine
(
R
,
-
R
*
dcenter
(
get_rect
(
out_img
))
+
dcenter
(
rimg
));
transform_image
(
in_img
,
out_img
,
interp
,
trans
);
return
trans
;
}
// ----------------------------------------------------------------------------------------
...
...
@@ -448,7 +449,7 @@ namespace dlib
typename
image_type1
,
typename
image_type2
>
void
rotate_image
(
point_transform_affine
rotate_image
(
const
image_type1
&
in_img
,
image_type2
&
out_img
,
double
angle
...
...
@@ -456,12 +457,12 @@ namespace dlib
{
// make sure requires clause is not broken
DLIB_ASSERT
(
is_same_object
(
in_img
,
out_img
)
==
false
,
"
\t
void
rotate_image()"
"
\t
point_transform_affine
rotate_image()"
<<
"
\n\t
Invalid inputs were given to this function."
<<
"
\n\t
is_same_object(in_img, out_img): "
<<
is_same_object
(
in_img
,
out_img
)
);
rotate_image
(
in_img
,
out_img
,
angle
,
interpolate_quadratic
());
r
eturn
r
otate_image
(
in_img
,
out_img
,
angle
,
interpolate_quadratic
());
}
// ----------------------------------------------------------------------------------------
...
...
@@ -861,7 +862,7 @@ namespace dlib
{
// make sure requires clause is not broken
DLIB_ASSERT
(
is_same_object
(
in_img
,
out_img
)
==
false
,
"
\t
void
rotate_image
()"
"
\t
void
flip_image_left_right
()"
<<
"
\n\t
Invalid inputs were given to this function."
<<
"
\n\t
is_same_object(in_img, out_img): "
<<
is_same_object
(
in_img
,
out_img
)
);
...
...
@@ -882,7 +883,7 @@ namespace dlib
{
// make sure requires clause is not broken
DLIB_ASSERT
(
is_same_object
(
in_img
,
out_img
)
==
false
,
"
\t
void
rotate_image
()"
"
\t
void
flip_image_up_down
()"
<<
"
\n\t
Invalid inputs were given to this function."
<<
"
\n\t
is_same_object(in_img, out_img): "
<<
is_same_object
(
in_img
,
out_img
)
);
...
...
dlib/image_transforms/interpolation_abstract.h
View file @
7742c575
...
...
@@ -293,7 +293,7 @@ namespace dlib
typename
image_type2
,
typename
interpolation_type
>
void
rotate_image
(
point_transform_affine
rotate_image
(
const
image_type1
&
in_img
,
image_type2
&
out_img
,
double
angle
,
...
...
@@ -312,6 +312,8 @@ namespace dlib
- Parts of #out_img which have no corresponding locations in in_img are set to black.
- uses the supplied interpolation routine interp to perform the necessary
pixel interpolation.
- returns a transformation object that maps points in in_img into their corresponding
location in #out_img.
!*/
// ----------------------------------------------------------------------------------------
...
...
@@ -321,7 +323,7 @@ namespace dlib
typename
image_type1
,
typename
image_type2
>
void
rotate_image
(
point_transform_affine
rotate_image
(
const
image_type1
&
in_img
,
image_type2
&
out_img
,
double
angle
...
...
@@ -338,6 +340,8 @@ namespace dlib
The rotation is performed with respect to the center of the image.
- Parts of #out_img which have no corresponding locations in in_img are set to black.
- uses the interpolate_quadratic object to perform the necessary pixel interpolation.
- returns a transformation object that maps points in in_img into their corresponding
location in #out_img.
!*/
// ----------------------------------------------------------------------------------------
...
...
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