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
40579234
Commit
40579234
authored
Sep 04, 2011
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a copy_configuration() routine to the hog_image.
parent
0a516b25
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
0 deletions
+18
-0
hog.h
dlib/image_keypoint/hog.h
+4
-0
hog_abstract.h
dlib/image_keypoint/hog_abstract.h
+14
-0
No files found.
dlib/image_keypoint/hog.h
View file @
40579234
...
...
@@ -71,6 +71,10 @@ namespace dlib
hist_cells
.
clear
();
}
void
copy_configuration
(
const
hog_image
&
){}
template
<
typename
image_type
>
...
...
dlib/image_keypoint/hog_abstract.h
View file @
40579234
...
...
@@ -127,6 +127,20 @@ namespace dlib
- this object will have its initial value
!*/
void
copy_configuration
(
const
hog_image
&
item
);
/*!
ensures
- copies all the state information of item into *this except for state
information populated by load(). More precisely, given two hog_image
objects H1 and H2, the following sequence of instructions should always
result in both of them having the exact same state.
H2.copy_configuration(H1);
H1.load(img);
H2.load(img);
!*/
template
<
typename
image_type
>
...
...
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