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
70aaa13a
Commit
70aaa13a
authored
Dec 29, 2011
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unnecessary requirement on get_block_rect()
parent
462c8c5c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
16 deletions
+2
-16
hog.h
dlib/image_keypoint/hog.h
+0
-12
hog_abstract.h
dlib/image_keypoint/hog_abstract.h
+2
-4
No files found.
dlib/image_keypoint/hog.h
View file @
70aaa13a
...
...
@@ -145,18 +145,6 @@ namespace dlib
long
col
)
const
{
// make sure requires clause is not broken
DLIB_ASSERT
(
0
<=
row
&&
row
<
nr
()
&&
0
<=
col
&&
col
<
nc
(),
"
\t
rectangle hog_image::get_block_rect()"
<<
"
\n\t
invalid row or col argument"
<<
"
\n\t
row: "
<<
row
<<
"
\n\t
col: "
<<
col
<<
"
\n\t
nr(): "
<<
nr
()
<<
"
\n\t
nc(): "
<<
nc
()
<<
"
\n\t
this: "
<<
this
);
row
*=
cell_stride
;
col
*=
cell_stride
;
...
...
dlib/image_keypoint/hog_abstract.h
View file @
70aaa13a
...
...
@@ -219,12 +219,10 @@ namespace dlib
long
col
)
const
;
/*!
requires
- 0 <= row < nr()
- 0 <= col < nc()
ensures
- returns a rectangle that tells you what part of the original image is associated
with a particular HOG block.
with a particular HOG block. That is, what part of the input image is associated
with (*this)(row,col).
- The returned rectangle will be cell_size*block_size pixels wide and tall.
!*/
...
...
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