- 21 Nov, 2018 1 commit
-
-
Davis King authored
-
- 17 Jun, 2018 1 commit
-
-
Davis King authored
-
- 11 Jun, 2018 1 commit
-
-
Davis King authored
-
- 09 Jun, 2018 1 commit
-
-
Davis King authored
-
- 26 May, 2018 1 commit
-
-
Davis King authored
previous dlib versions.
-
- 07 May, 2018 1 commit
-
-
Davis King authored
-
- 28 Apr, 2018 1 commit
-
-
Davis King authored
conform to dlib's generic image interface. This makes dealing with numpy images in pybind11 modules much nicer.
-
- 12 Feb, 2018 2 commits
-
-
Davis King authored
-
Davis King authored
- Moved all uses of PYBIND11_MAKE_OPAQUE to a common header to avoid possilbe ODR violations. - Added python binding for make_bounding_box_regression_training_data().
-
- 16 Jan, 2018 1 commit
-
-
Mischan Toosarani-Hausberger authored
* Replace boost::python with pybind11 * Replace add_python_module with pybind11_add_module * Fix clang error on type-dependent expression
-
- 25 Jan, 2017 1 commit
-
-
Davis King authored
-
- 03 Feb, 2016 1 commit
-
-
Patrick Snape authored
Add a simple print and serialization scheme for shape_predictor_training_options. This enables you to serialize your training options.
-
- 26 May, 2015 1 commit
-
-
Davis King authored
-
- 26 Mar, 2015 1 commit
-
-
Davis King authored
-
- 28 Dec, 2014 1 commit
-
-
Davis King authored
Also just cleaned up a few minor details.
-
- 11 Dec, 2014 4 commits
-
-
Patrick Snape authored
This is the biggest change so far. Now, there are two different classes of interface. One where you pass ONLY file paths, and one where you pass ONLY Python objects. The file paths are maintained to keep a matching interface with the C++ examples of dlib. So shape predicition and object detection can be trained using the dlib XML file paths and then serialize the detectors to disk. Shape prediction and object detection can also be trained using numpy arrays and in-memory objects. In this case, the predictor and detector objects are returned from the training functions. To facilitate serializing these objects, they now have a 'save' method. Tetsing follows a similar pattern, in that it can take either XML files are or in-memory objects. I also added back the concept of upsampling during testing to make amends for removing the simple_object_detector_py struct.
-
Patrick Snape authored
Also, removed the saving of the upsample which I missed from before (since I'm not using the struct now). I understand why the upsample was being saved, but I don't necessarily agree it is particularly useful as you should really be upsampling on a case by case basis at test time.
-
Patrick Snape authored
Fix typo as well
-
Patrick Snape authored
This includes the full_object_detection, a new struct in the same vein as the simple_object_detector_training_options and of course, the shape predictor classes themselves. All of training, fitting and testing are wrapped.
-