Commit ec150f8d authored by Davis King's avatar Davis King

Fixed warnings and sorta bugs.

parent f2cb001c
...@@ -284,9 +284,10 @@ struct py_pyramid_down ...@@ -284,9 +284,10 @@ struct py_pyramid_down
template <typename T> template <typename T>
dlib::vector<double,2> point_down ( dlib::vector<double,2> point_down (
const dlib::vector<T,2>& p const dlib::vector<T,2>& pp
) const ) const
{ {
dpoint p = pp;
switch(N) switch(N)
{ {
case 1: return pyr1.point_down(p); case 1: return pyr1.point_down(p);
...@@ -316,9 +317,10 @@ struct py_pyramid_down ...@@ -316,9 +317,10 @@ struct py_pyramid_down
template <typename T> template <typename T>
dlib::vector<double,2> point_up ( dlib::vector<double,2> point_up (
const dlib::vector<T,2>& p const dlib::vector<T,2>& pp
) const ) const
{ {
dpoint p = pp;
switch(N) switch(N)
{ {
case 1: return pyr1.point_up(p); case 1: return pyr1.point_up(p);
...@@ -1068,7 +1070,7 @@ than 0 are converted to 0."; ...@@ -1068,7 +1070,7 @@ than 0 are converted to 0.";
m.def("convert_rgb_to_grayscale", &convert_rgb_to_grayscale, m.def("convert_rgb_to_grayscale", &convert_rgb_to_grayscale,
"Convert a RGB image to a uint8 grayscale image.", py::arg("img")); "Convert a RGB image to a uint8 grayscale image.", py::arg("img"));
docs = ""; docs =
"requires \n\ "requires \n\
- thresh > 0 \n\ - thresh > 0 \n\
ensures \n\ ensures \n\
......
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