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
e5014f0d
Commit
e5014f0d
authored
Sep 08, 2011
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed typos in spec.
parent
ca30fd76
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
array2d_kernel_abstract.h
dlib/array2d/array2d_kernel_abstract.h
+2
-2
cv_image_abstract.h
dlib/opencv/cv_image_abstract.h
+1
-1
No files found.
dlib/array2d/array2d_kernel_abstract.h
View file @
e5014f0d
...
@@ -55,7 +55,7 @@ namespace dlib
...
@@ -55,7 +55,7 @@ namespace dlib
Finally, note that this object stores each row of data contiguously
Finally, note that this object stores each row of data contiguously
in memory, and the overall layout is in row major order. However,
in memory, and the overall layout is in row major order. However,
there might be padding at the end of each row. To determine the
there might be padding at the end of each row. To determine the
offset from one row to another you can use
step_width
().
offset from one row to another you can use
width_step
().
!*/
!*/
...
@@ -210,7 +210,7 @@ namespace dlib
...
@@ -210,7 +210,7 @@ namespace dlib
/*!
/*!
ensures
ensures
- returns the pointer offset to step from one row to another.
- returns the pointer offset to step from one row to another.
That is, &item[0][0] +
step_width(item
) == &item[1][0].
That is, &item[0][0] +
item.width_step(
) == &item[1][0].
!*/
!*/
private
:
private
:
...
...
dlib/opencv/cv_image_abstract.h
View file @
e5014f0d
...
@@ -147,7 +147,7 @@ namespace dlib
...
@@ -147,7 +147,7 @@ namespace dlib
/*!
/*!
ensures
ensures
- returns the pointer offset to step from one row to another.
- returns the pointer offset to step from one row to another.
That is, &item[0][0] +
step_width(item
) == &item[1][0].
That is, &item[0][0] +
item.width_step(
) == &item[1][0].
!*/
!*/
};
};
...
...
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