├── .gitattributes ├── .gitignore ├── README.md ├── app-console.py └── cropman ├── __init__.py ├── config └── haarcascade_frontalface_default.xml ├── cropper.py ├── detector.py └── tests ├── __init__.py └── test_cropper.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ufoym/cropman/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ufoym/cropman/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ufoym/cropman/HEAD/README.md -------------------------------------------------------------------------------- /app-console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ufoym/cropman/HEAD/app-console.py -------------------------------------------------------------------------------- /cropman/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ufoym/cropman/HEAD/cropman/__init__.py -------------------------------------------------------------------------------- /cropman/config/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ufoym/cropman/HEAD/cropman/config/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /cropman/cropper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ufoym/cropman/HEAD/cropman/cropper.py -------------------------------------------------------------------------------- /cropman/detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ufoym/cropman/HEAD/cropman/detector.py -------------------------------------------------------------------------------- /cropman/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- -------------------------------------------------------------------------------- /cropman/tests/test_cropper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ufoym/cropman/HEAD/cropman/tests/test_cropper.py --------------------------------------------------------------------------------