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
2ec475cc
Commit
2ec475cc
authored
Oct 04, 2013
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some compile time errors in the new overload of resize_image().
parent
f35a90c8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
20 deletions
+23
-20
interpolation.h
dlib/image_transforms/interpolation.h
+23
-20
No files found.
dlib/image_transforms/interpolation.h
View file @
2ec475cc
...
...
@@ -524,8 +524,8 @@ namespace dlib
typename
image_type2
>
void
resize_image
(
const
image_type1
&
img
,
image_type2
&
out
,
const
image_type1
&
i
n_i
mg
,
image_type2
&
out
_img
,
interpolate_bilinear
)
{
...
...
@@ -537,55 +537,58 @@ namespace dlib
);
typedef
typename
image_type1
::
type
T
;
const
double
x_scale
=
(
i
mg
.
nc
()
-
1
)
/
(
double
)
std
::
max
<
long
>
((
out
.
nc
()
-
1
),
1
);
const
double
y_scale
=
(
i
mg
.
nr
()
-
1
)
/
(
double
)
std
::
max
<
long
>
((
out
.
nr
()
-
1
),
1
);
const
double
x_scale
=
(
i
n_img
.
nc
()
-
1
)
/
(
double
)
std
::
max
<
long
>
((
out_img
.
nc
()
-
1
),
1
);
const
double
y_scale
=
(
i
n_img
.
nr
()
-
1
)
/
(
double
)
std
::
max
<
long
>
((
out_img
.
nr
()
-
1
),
1
);
double
y
=
-
y_scale
;
for
(
long
r
=
0
;
r
<
out
.
nr
();
++
r
)
for
(
long
r
=
0
;
r
<
out
_img
.
nr
();
++
r
)
{
y
+=
y_scale
;
const
long
top
=
static_cast
<
long
>
(
std
::
floor
(
y
));
const
long
bottom
=
std
::
min
(
top
+
1
,
img
.
nr
()
-
1
);
const
long
bottom
=
std
::
min
(
top
+
1
,
i
n_i
mg
.
nr
()
-
1
);
const
double
tb_frac
=
y
-
top
;
double
x
=
-
x_scale
;
if
(
!
pixel_traits
<
T
>::
rgb
)
{
for
(
long
c
=
0
;
c
<
out
.
nc
();
++
c
)
for
(
long
c
=
0
;
c
<
out
_img
.
nc
();
++
c
)
{
x
+=
x_scale
;
const
long
left
=
static_cast
<
long
>
(
std
::
floor
(
x
));
const
long
right
=
std
::
min
(
left
+
1
,
img
.
nc
()
-
1
);
const
long
right
=
std
::
min
(
left
+
1
,
i
n_i
mg
.
nc
()
-
1
);
const
double
lr_frac
=
x
-
left
;
double
tl
=
0
,
tr
=
0
,
bl
=
0
,
br
=
0
;
assign_pixel
(
tl
,
img
[
top
][
left
]);
assign_pixel
(
tr
,
img
[
top
][
right
]);
assign_pixel
(
bl
,
img
[
bottom
][
left
]);
assign_pixel
(
br
,
img
[
bottom
][
right
]);
assign_pixel
(
tl
,
i
n_i
mg
[
top
][
left
]);
assign_pixel
(
tr
,
i
n_i
mg
[
top
][
right
]);
assign_pixel
(
bl
,
i
n_i
mg
[
bottom
][
left
]);
assign_pixel
(
br
,
i
n_i
mg
[
bottom
][
right
]);
double
temp
=
(
1
-
tb_frac
)
*
((
1
-
lr_frac
)
*
tl
+
lr_frac
*
tr
)
+
tb_frac
*
((
1
-
lr_frac
)
*
bl
+
lr_frac
*
br
);
assign_pixel
(
out
[
r
][
c
],
temp
);
assign_pixel
(
out
_img
[
r
][
c
],
temp
);
}
}
else
{
for
(
long
c
=
0
;
c
<
out
.
nc
();
++
c
)
for
(
long
c
=
0
;
c
<
out
_img
.
nc
();
++
c
)
{
x
+=
x_scale
;
const
long
left
=
static_cast
<
long
>
(
std
::
floor
(
x
));
const
long
right
=
std
::
min
(
left
+
1
,
img
.
nc
()
-
1
);
const
long
right
=
std
::
min
(
left
+
1
,
i
n_i
mg
.
nc
()
-
1
);
const
double
lr_frac
=
x
-
left
;
const
T
tl
=
img
[
top
][
left
];
const
T
tr
=
img
[
top
][
right
];
const
T
bl
=
img
[
bottom
][
left
];
const
T
br
=
img
[
bottom
][
right
];
const
T
tl
=
i
n_i
mg
[
top
][
left
];
const
T
tr
=
i
n_i
mg
[
top
][
right
];
const
T
bl
=
i
n_i
mg
[
bottom
][
left
];
const
T
br
=
i
n_i
mg
[
bottom
][
right
];
vector_to_pixel
(
out
[
r
][
c
],
T
temp
;
assign_pixel
(
temp
,
0
);
vector_to_pixel
(
temp
,
(
1
-
tb_frac
)
*
((
1
-
lr_frac
)
*
pixel_to_vector
<
double
>
(
tl
)
+
lr_frac
*
pixel_to_vector
<
double
>
(
tr
))
+
tb_frac
*
((
1
-
lr_frac
)
*
pixel_to_vector
<
double
>
(
bl
)
+
lr_frac
*
pixel_to_vector
<
double
>
(
br
)));
assign_pixel
(
out_img
[
r
][
c
],
temp
);
}
}
}
...
...
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