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
2a3d7494
Commit
2a3d7494
authored
Jul 13, 2013
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made the integral image swappable
parent
5dace981
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
1 deletion
+32
-1
integral_image.h
dlib/image_transforms/integral_image.h
+13
-1
integral_image_abstract.h
dlib/image_transforms/integral_image_abstract.h
+19
-0
No files found.
dlib/image_transforms/integral_image.h
View file @
2a3d7494
...
...
@@ -94,12 +94,24 @@ namespace dlib
return
bottom_right
-
bottom_left
-
top_right
+
top_left
;
}
void
swap
(
integral_image_generic
&
item
)
{
int_img
.
swap
(
item
.
int_img
);
}
private
:
array2d
<
T
>
int_img
;
};
};
template
<
typename
T
>
void
swap
(
integral_image_generic
<
T
>&
a
,
integral_image_generic
<
T
>&
b
)
{
a
.
swap
(
b
);
}
// ----------------------------------------------------------------------------------------
...
...
dlib/image_transforms/integral_image_abstract.h
View file @
2a3d7494
...
...
@@ -83,8 +83,27 @@ namespace dlib
are contained within the given rectangle.
!*/
void
swap
(
integral_image_generic
&
item
);
/*!
ensures
- swaps *this and item
!*/
};
// ----------------------------------------------------------------------------------------
template
<
typename
T
>
void
swap
(
integral_image_generic
<
T
>&
a
,
integral_image_generic
<
T
>&
b
)
{
a
.
swap
(
b
);
}
/*!
provides a global swap function
!*/
// ----------------------------------------------------------------------------------------
typedef
integral_image_generic
<
long
>
integral_image
;
...
...
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