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
421e5bcd
Commit
421e5bcd
authored
Jun 27, 2013
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a dot() and slicing support to dlib.vector()
parent
20ed7ebe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
0 deletions
+32
-0
vector.cpp
tools/python/src/vector.cpp
+32
-0
No files found.
tools/python/src/vector.cpp
View file @
421e5bcd
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
#include <boost/shared_ptr.hpp>
#include <boost/shared_ptr.hpp>
#include <dlib/matrix.h>
#include <dlib/matrix.h>
#include "serialize_pickle.h"
#include "serialize_pickle.h"
#include <boost/python/slice.hpp>
using
namespace
dlib
;
using
namespace
dlib
;
...
@@ -19,6 +20,11 @@ void cv_set_size(cv& m, long s)
...
@@ -19,6 +20,11 @@ void cv_set_size(cv& m, long s)
m
=
0
;
m
=
0
;
}
}
double
dotprod
(
const
cv
&
a
,
const
cv
&
b
)
{
return
dot
(
a
,
b
);
}
string
cv__str__
(
const
cv
&
v
)
string
cv__str__
(
const
cv
&
v
)
{
{
ostringstream
sout
;
ostringstream
sout
;
...
@@ -100,6 +106,29 @@ double cv__getitem__(cv& m, long r)
...
@@ -100,6 +106,29 @@ double cv__getitem__(cv& m, long r)
}
}
cv
cv__getitem2__
(
cv
&
m
,
slice
r
)
{
slice
::
range
<
cv
::
iterator
>
bounds
;
bounds
=
r
.
get_indices
<>
(
m
.
begin
(),
m
.
end
());
long
num
=
(
bounds
.
stop
-
bounds
.
start
+
1
);
// round num up to the next multiple of bounds.step.
if
((
num
%
bounds
.
step
)
!=
0
)
num
+=
bounds
.
step
-
num
%
bounds
.
step
;
cv
temp
(
num
/
bounds
.
step
);
if
(
temp
.
size
()
==
0
)
return
temp
;
long
ii
=
0
;
while
(
bounds
.
start
!=
bounds
.
stop
)
{
temp
(
ii
++
)
=
*
bounds
.
start
;
std
::
advance
(
bounds
.
start
,
bounds
.
step
);
}
temp
(
ii
)
=
*
bounds
.
start
;
return
temp
;
}
tuple
cv_get_matrix_size
(
cv
&
m
)
tuple
cv_get_matrix_size
(
cv
&
m
)
{
{
return
make_tuple
(
m
.
nr
(),
m
.
nc
());
return
make_tuple
(
m
.
nr
(),
m
.
nc
());
...
@@ -115,8 +144,11 @@ void bind_vector()
...
@@ -115,8 +144,11 @@ void bind_vector()
.
def
(
"__str__"
,
&
cv__str__
)
.
def
(
"__str__"
,
&
cv__str__
)
.
def
(
"__len__"
,
&
cv__len__
)
.
def
(
"__len__"
,
&
cv__len__
)
.
def
(
"__getitem__"
,
&
cv__getitem__
)
.
def
(
"__getitem__"
,
&
cv__getitem__
)
.
def
(
"__getitem__"
,
&
cv__getitem2__
)
.
def
(
"__setitem__"
,
&
cv__setitem__
)
.
def
(
"__setitem__"
,
&
cv__setitem__
)
.
add_property
(
"shape"
,
&
cv_get_matrix_size
)
.
add_property
(
"shape"
,
&
cv_get_matrix_size
)
.
def_pickle
(
serialize_pickle
<
cv
>
());
.
def_pickle
(
serialize_pickle
<
cv
>
());
def
(
"dot"
,
dotprod
,
"Compute the dot product between two dense column vectors."
);
}
}
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