├── models ├── __init__.py ├── __pycache__ │ ├── common.cpython-37.pyc │ ├── common.cpython-38.pyc │ ├── yolo.cpython-37.pyc │ ├── yolo.cpython-38.pyc │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── experimental.cpython-37.pyc │ └── experimental.cpython-38.pyc ├── hub │ ├── yolov3-tiny.yaml │ ├── yolov5-fpn.yaml │ ├── yolov5-panet.yaml │ ├── yolov3.yaml │ ├── yolov3-spp.yaml │ ├── yolov5-p2.yaml │ ├── yolov5-p6.yaml │ ├── yolov5l6.yaml │ ├── yolov5m6.yaml │ ├── yolov5s6.yaml │ ├── yolov5x6.yaml │ ├── yolov5-p7.yaml │ └── anchors.yaml ├── yolov5l.yaml ├── yolov5m.yaml ├── yolov5s.yaml ├── yolov5x.yaml ├── export.py ├── experimental.py ├── yolo.py └── common.py ├── screenshot ├── 1.jpeg ├── 2.png ├── 3.jpg └── qrcode.png ├── data ├── images │ └── zidane.jpg ├── voc.yaml ├── hyp.finetune.yaml ├── scripts │ ├── get_coco.sh │ └── get_voc.sh ├── coco128.yaml ├── hyp.scratch.yaml └── coco.yaml ├── runs └── detect │ └── exp3 │ └── zidane.jpg ├── weights └── download_weights.sh ├── Dockerfile ├── hubconf.py ├── README.md ├── detect_camera.py └── detect_photo.py /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /screenshot/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-Detection-and-recognition-of-emotion-expression/HEAD/screenshot/1.jpeg -------------------------------------------------------------------------------- /screenshot/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-Detection-and-recognition-of-emotion-expression/HEAD/screenshot/2.png -------------------------------------------------------------------------------- /screenshot/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-Detection-and-recognition-of-emotion-expression/HEAD/screenshot/3.jpg -------------------------------------------------------------------------------- /data/images/zidane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-Detection-and-recognition-of-emotion-expression/HEAD/data/images/zidane.jpg -------------------------------------------------------------------------------- /screenshot/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-Detection-and-recognition-of-emotion-expression/HEAD/screenshot/qrcode.png -------------------------------------------------------------------------------- /runs/detect/exp3/zidane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-Detection-and-recognition-of-emotion-expression/HEAD/runs/detect/exp3/zidane.jpg -------------------------------------------------------------------------------- /models/__pycache__/common.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-Detection-and-recognition-of-emotion-expression/HEAD/models/__pycache__/common.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/common.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-Detection-and-recognition-of-emotion-expression/HEAD/models/__pycache__/common.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/yolo.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-Detection-and-recognition-of-emotion-expression/HEAD/models/__pycache__/yolo.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/yolo.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-Detection-and-recognition-of-emotion-expression/HEAD/models/__pycache__/yolo.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-Detection-and-recognition-of-emotion-expression/HEAD/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-Detection-and-recognition-of-emotion-expression/HEAD/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/experimental.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-Detection-and-recognition-of-emotion-expression/HEAD/models/__pycache__/experimental.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/experimental.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alicema-creator/Python-Yolov5-Detection-and-recognition-of-emotion-expression/HEAD/models/__pycache__/experimental.cpython-38.pyc -------------------------------------------------------------------------------- /weights/download_weights.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Download latest models from https://github.com/ultralytics/yolov5/releases 3 | # Usage: 4 | # $ bash weights/download_weights.sh 5 | 6 | python - <train.txt 91 | cat 2007_train.txt 2007_val.txt 2007_test.txt 2012_train.txt 2012_val.txt >train.all.txt 92 | 93 | python3 - "$@" <