Commit 421e5bcd authored by Davis King's avatar Davis King

Added a dot() and slicing support to dlib.vector()

parent 20ed7ebe
...@@ -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.");
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment