Commit b23c7186 authored by Davis King's avatar Davis King

Fixed dlib.threshold_image() ignoring the optional thresh argument.

parent 1f0cb544
...@@ -38,7 +38,7 @@ numpy_image<unsigned char> py_threshold_image2( ...@@ -38,7 +38,7 @@ numpy_image<unsigned char> py_threshold_image2(
) )
{ {
numpy_image<unsigned char> out_img; numpy_image<unsigned char> out_img;
threshold_image(in_img, out_img); threshold_image(in_img, out_img, thresh);
return out_img; return out_img;
} }
......
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