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
5f7007cf
Commit
5f7007cf
authored
Feb 11, 2015
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed sub_image() so it works properly with nested sub-images.
parent
5fa13921
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
interpolation.h
dlib/image_transforms/interpolation.h
+2
-2
No files found.
dlib/image_transforms/interpolation.h
View file @
5f7007cf
...
...
@@ -49,13 +49,13 @@ namespace dlib
inline
void
*
image_data
(
sub_image_proxy
<
T
>&
img
)
{
typedef
typename
image_traits
<
T
>::
pixel_type
pixel_type
;
return
static_cast
<
pixel_type
*>
(
image_data
(
img
.
img
))
+
img
.
rect
.
left
()
+
img
.
rect
.
top
()
*
num_columns
(
img
.
img
);
return
(
char
*
)
image_data
(
img
.
img
)
+
sizeof
(
pixel_type
)
*
img
.
rect
.
left
()
+
img
.
rect
.
top
()
*
width_step
(
img
);
}
template
<
typename
T
>
inline
const
void
*
image_data
(
const
sub_image_proxy
<
T
>&
img
)
{
typedef
typename
image_traits
<
T
>::
pixel_type
pixel_type
;
return
static_cast
<
const
pixel_type
*>
(
image_data
(
img
.
img
))
+
img
.
rect
.
left
()
+
img
.
rect
.
top
()
*
num_columns
(
img
.
img
);
return
(
const
char
*
)
image_data
(
img
.
img
)
+
sizeof
(
pixel_type
)
*
img
.
rect
.
left
()
+
img
.
rect
.
top
()
*
width_step
(
img
);
}
template
<
typename
T
>
...
...
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