https://github.com/vaaaaanquish/dlib_detection_python_script
dlib_detection_python_script
https://github.com/vaaaaanquish/dlib_detection_python_script
Last synced: about 2 months ago
JSON representation
dlib_detection_python_script
- Host: GitHub
- URL: https://github.com/vaaaaanquish/dlib_detection_python_script
- Owner: vaaaaanquish
- Created: 2019-04-13T16:20:23.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-13T16:21:18.000Z (about 6 years ago)
- Last Synced: 2025-01-18T03:40:40.557Z (3 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Dlibで物体検出するやつ
====## Script
- main.py : 指定したディレクトリのファイル全部を顔検出に流す
- detector_dlib.py
- dlib標準の顔検出 frontal_face_detector に画像を投げる
- 学習したsvmを使いたい時はコメントアウトでよしなに
- dlib_train_detector.py : 学習用のスクリプト(パラメータなんかは中に書いてある)
- japanese_comment_train_object_detector.txt
- http://dlib.net/train_object_detector.py.html
- これ適当に日本語に訳したやつ## Usage
- 画像1枚送りたい時はface_detector_dlib.pyで画像へのpathを指定して```python detector_dlib.py```
- まとめてなげる時はmain.pyで入出力ディレクトリを指定して
```python main.py```
- 学習する時はdlib_train_detector.pyで入出力ディレクトリを指定して
```python dlib_train_detector.py```
- 後はブログ記事を参考に
http://vaaaaaanquish.hatenablog.com/entry/2016/09/04/143408