From a0dc35edb0571e5cef8d23c0668643f88f235a6f Mon Sep 17 00:00:00 2001 From: Davis King Date: Mon, 18 Mar 2019 21:38:45 -0400 Subject: [PATCH] updated python docs --- tools/python/src/shape_predictor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/src/shape_predictor.cpp b/tools/python/src/shape_predictor.cpp index 5c2920ee9..9a5dcc859 100644 --- a/tools/python/src/shape_predictor.cpp +++ b/tools/python/src/shape_predictor.cpp @@ -160,7 +160,7 @@ void bind_shape_predictors(py::module &m) py::class_>(m, "full_object_detection", "This object represents the location of an object in an image along with the \ positions of each of its constituent parts.") - .def(py::init(&full_obj_det_init), + .def(py::init(&full_obj_det_init), py::arg("rect"), py::arg("parts"), "requires \n\ - rect: dlib rectangle \n\ - parts: list of dlib points")