Commit 6f57d405 authored by Davis King's avatar Davis King

fixed bug.

parent 9bea5e39
......@@ -22,7 +22,7 @@ namespace dlib
full_object_detection(
const rectangle& rect_,
const std::vector<point>& movable_parts_
) : rect(rect_), movable_parts(movable_parts) {}
) : rect(rect_), movable_parts(movable_parts_) {}
explicit full_object_detection(
const rectangle& rect_
......
......@@ -21,7 +21,7 @@ namespace dlib
full_object_detection(
const rectangle& rect_,
const std::vector<point>& movable_parts_
) : rect(rect_), movable_parts(movable_parts) {}
) : rect(rect_), movable_parts(movable_parts_) {}
explicit full_object_detection(
const rectangle& rect_
......
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