├── .gitignore ├── README.md ├── cascade ├── __init__.py ├── carm │ ├── __init__.py │ ├── boostCart.py │ ├── carmWrapper.py │ └── cart.py └── cascade.py ├── config ├── afw.txt ├── afw_config.py ├── afw_model │ ├── face.pyobj │ └── train.model ├── neg.txt ├── neg │ ├── neg1.jpg │ ├── neg2.jpg │ ├── neg3.jpg │ ├── neg4.jpg │ └── neg5.jpg └── pos.jpg ├── dator ├── __init__.py ├── bootstrap.py ├── data.py ├── reader.py └── shape.py ├── demo ├── demo_detect.py └── demo_train.py └── utils ├── __init__.py └── util.py /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | model 3 | *.pyc 4 | *# -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaceDetect/jointCascade_py/HEAD/README.md -------------------------------------------------------------------------------- /cascade/__init__.py: -------------------------------------------------------------------------------- 1 | from cascade import * 2 | -------------------------------------------------------------------------------- /cascade/carm/__init__.py: -------------------------------------------------------------------------------- 1 | from carmWrapper import * 2 | -------------------------------------------------------------------------------- /cascade/carm/boostCart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaceDetect/jointCascade_py/HEAD/cascade/carm/boostCart.py -------------------------------------------------------------------------------- /cascade/carm/carmWrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaceDetect/jointCascade_py/HEAD/cascade/carm/carmWrapper.py -------------------------------------------------------------------------------- /cascade/carm/cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaceDetect/jointCascade_py/HEAD/cascade/carm/cart.py -------------------------------------------------------------------------------- /cascade/cascade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaceDetect/jointCascade_py/HEAD/cascade/cascade.py -------------------------------------------------------------------------------- /config/afw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaceDetect/jointCascade_py/HEAD/config/afw.txt -------------------------------------------------------------------------------- /config/afw_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaceDetect/jointCascade_py/HEAD/config/afw_config.py -------------------------------------------------------------------------------- /config/afw_model/face.pyobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaceDetect/jointCascade_py/HEAD/config/afw_model/face.pyobj -------------------------------------------------------------------------------- /config/afw_model/train.model: -------------------------------------------------------------------------------- 1 | face.pyobj -------------------------------------------------------------------------------- /config/neg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaceDetect/jointCascade_py/HEAD/config/neg.txt -------------------------------------------------------------------------------- /config/neg/neg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaceDetect/jointCascade_py/HEAD/config/neg/neg1.jpg -------------------------------------------------------------------------------- /config/neg/neg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaceDetect/jointCascade_py/HEAD/config/neg/neg2.jpg -------------------------------------------------------------------------------- /config/neg/neg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaceDetect/jointCascade_py/HEAD/config/neg/neg3.jpg -------------------------------------------------------------------------------- /config/neg/neg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaceDetect/jointCascade_py/HEAD/config/neg/neg4.jpg -------------------------------------------------------------------------------- /config/neg/neg5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaceDetect/jointCascade_py/HEAD/config/neg/neg5.jpg -------------------------------------------------------------------------------- /config/pos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaceDetect/jointCascade_py/HEAD/config/pos.jpg -------------------------------------------------------------------------------- /dator/__init__.py: -------------------------------------------------------------------------------- 1 | from data import * 2 | -------------------------------------------------------------------------------- /dator/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaceDetect/jointCascade_py/HEAD/dator/bootstrap.py -------------------------------------------------------------------------------- /dator/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaceDetect/jointCascade_py/HEAD/dator/data.py -------------------------------------------------------------------------------- /dator/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaceDetect/jointCascade_py/HEAD/dator/reader.py -------------------------------------------------------------------------------- /dator/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaceDetect/jointCascade_py/HEAD/dator/shape.py -------------------------------------------------------------------------------- /demo/demo_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaceDetect/jointCascade_py/HEAD/demo/demo_detect.py -------------------------------------------------------------------------------- /demo/demo_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaceDetect/jointCascade_py/HEAD/demo/demo_train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaceDetect/jointCascade_py/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaceDetect/jointCascade_py/HEAD/utils/util.py --------------------------------------------------------------------------------