├── .gitignore ├── README.md ├── data_cleaning └── clean_data.py ├── data_preprocessing ├── detect.py └── preprocess_helpers.py ├── dataset.txt ├── get_training_data ├── booru.py ├── hotdog.py ├── pixiv.py └── zerochan.py ├── lbpcascade_animeface.xml ├── output_labels.txt ├── retrained_graph.pb ├── test.py ├── test_video.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad044/lain-face-detection/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad044/lain-face-detection/HEAD/README.md -------------------------------------------------------------------------------- /data_cleaning/clean_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad044/lain-face-detection/HEAD/data_cleaning/clean_data.py -------------------------------------------------------------------------------- /data_preprocessing/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad044/lain-face-detection/HEAD/data_preprocessing/detect.py -------------------------------------------------------------------------------- /data_preprocessing/preprocess_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad044/lain-face-detection/HEAD/data_preprocessing/preprocess_helpers.py -------------------------------------------------------------------------------- /dataset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad044/lain-face-detection/HEAD/dataset.txt -------------------------------------------------------------------------------- /get_training_data/booru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad044/lain-face-detection/HEAD/get_training_data/booru.py -------------------------------------------------------------------------------- /get_training_data/hotdog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad044/lain-face-detection/HEAD/get_training_data/hotdog.py -------------------------------------------------------------------------------- /get_training_data/pixiv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad044/lain-face-detection/HEAD/get_training_data/pixiv.py -------------------------------------------------------------------------------- /get_training_data/zerochan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad044/lain-face-detection/HEAD/get_training_data/zerochan.py -------------------------------------------------------------------------------- /lbpcascade_animeface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad044/lain-face-detection/HEAD/lbpcascade_animeface.xml -------------------------------------------------------------------------------- /output_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad044/lain-face-detection/HEAD/output_labels.txt -------------------------------------------------------------------------------- /retrained_graph.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad044/lain-face-detection/HEAD/retrained_graph.pb -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad044/lain-face-detection/HEAD/test.py -------------------------------------------------------------------------------- /test_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad044/lain-face-detection/HEAD/test_video.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ad044/lain-face-detection/HEAD/train.py --------------------------------------------------------------------------------