在 Python 中使用 dlib 训练对象检测器
Using dlib trained object detector in Python
我正在研究 Python。我一直在使用 dlib 的函数 dlib.get_frontal_face_detector()
来检测正面,现在我正在使用 http://dlib.net/fhog_object_detector_ex.cpp.html 上的教程来训练我自己的对象检测器。但是,这是用 C++ 训练的。
如何使用经过训练的分类器(我相信它叫做 face_detector.svm
)并在 Python 上使用它?
(一个更好的问题可能是如何在 Python 中完全训练 dlib 的 HOG,但这不是那么重要。)
谢谢!
Python 可以在此处找到可以训练和测试对象检测器的示例 -
github.com/davisking/dlib/blob/master/python_examples/train_object_detector.py
我正在研究 Python。我一直在使用 dlib 的函数 dlib.get_frontal_face_detector()
来检测正面,现在我正在使用 http://dlib.net/fhog_object_detector_ex.cpp.html 上的教程来训练我自己的对象检测器。但是,这是用 C++ 训练的。
如何使用经过训练的分类器(我相信它叫做 face_detector.svm
)并在 Python 上使用它?
(一个更好的问题可能是如何在 Python 中完全训练 dlib 的 HOG,但这不是那么重要。)
谢谢!
Python 可以在此处找到可以训练和测试对象检测器的示例 - github.com/davisking/dlib/blob/master/python_examples/train_object_detector.py