Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
e5014f0d
Commit
e5014f0d
authored
Sep 07, 2011
by
Davis King
Browse files
Fixed typos in spec.
parent
ca30fd76
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
dlib/array2d/array2d_kernel_abstract.h
dlib/array2d/array2d_kernel_abstract.h
+2
-2
dlib/opencv/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
Finally, note that this object stores each row of data contiguously
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
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
/*!
ensures
- returns the pointer offset to step from one row to another.
That is, &item[0][0] +
s
te
p_
width
(item
) == &item[1][0].
That is, &item[0][0] +
i
te
m.
width
_step(
) == &item[1][0].
!*/
private:
...
...
dlib/opencv/cv_image_abstract.h
View file @
e5014f0d
...
...
@@ -147,7 +147,7 @@ namespace dlib
/*!
ensures
- returns the pointer offset to step from one row to another.
That is, &item[0][0] +
s
te
p_
width
(item
) == &item[1][0].
That is, &item[0][0] +
i
te
m.
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