├── README.md ├── Yolov5-deepsort-behavior-detection-1.0 ├── LICENSE ├── README.md ├── images │ └── 1620298460804.gif ├── main.py ├── mainwindow.ui ├── models │ ├── __pycache__ │ │ ├── common.cpython-39.pyc │ │ └── experimental.cpython-39.pyc │ ├── common.py │ ├── experimental.py │ ├── export.py │ ├── hub │ │ ├── anchors.yaml │ │ ├── yolov3-spp.yaml │ │ ├── yolov3-tiny.yaml │ │ ├── yolov3.yaml │ │ ├── yolov5-fpn.yaml │ │ ├── yolov5-p2.yaml │ │ ├── yolov5-p6.yaml │ │ ├── yolov5-p7.yaml │ │ ├── yolov5-panet.yaml │ │ ├── yolov5l6.yaml │ │ ├── yolov5m6.yaml │ │ ├── yolov5s6.yaml │ │ └── yolov5x6.yaml │ ├── yolo.py │ ├── yolov5l.yaml │ ├── yolov5m.yaml │ ├── yolov5s.yaml │ └── yolov5x.yaml ├── mydetect.py ├── myfatigue.py ├── myframe.py ├── ui_mainwindow.py ├── utils │ ├── __pycache__ │ │ ├── datasets.cpython-39.pyc │ │ ├── general.cpython-39.pyc │ │ ├── google_utils.cpython-39.pyc │ │ ├── metrics.cpython-39.pyc │ │ ├── plots.cpython-39.pyc │ │ └── torch_utils.cpython-39.pyc │ ├── activations.py │ ├── autoanchor.py │ ├── datasets.py │ ├── general.py │ ├── google_app_engine │ │ ├── Dockerfile │ │ ├── additional_requirements.txt │ │ └── app.yaml │ ├── google_utils.py │ ├── loss.py │ ├── metrics.py │ ├── plots.py │ ├── torch_utils.py │ └── wandb_logging │ │ ├── log_dataset.py │ │ └── wandb_utils.py └── weights │ └── best.pt ├── face_recognition ├── data │ ├── res │ │ ├── id_image_cropped.png │ │ ├── res.png │ │ └── room_image_cropped.png │ └── samples │ │ ├── example.png │ │ ├── example2.jpg │ │ └── wangzhi_id.jpg ├── light_cnn.py ├── main.py └── models │ └── face_detector │ └── haarcascade_frontalface_alt2.xml └── facial expression-PyTorch-JAANet-master ├── README.md ├── data ├── imgs │ ├── BP4D │ │ └── F001 │ │ │ └── T1 │ │ │ ├── 2440.jpg │ │ │ └── 2441.jpg │ └── DISFA │ │ └── SN002 │ │ ├── 0.jpg │ │ └── 1.jpg └── list │ ├── BP4D_combine_1_2_biocular.txt │ ├── BP4D_combine_1_2_land.txt │ ├── BP4D_combine_1_2_path.txt │ ├── BP4D_combine_1_3_path.txt │ ├── BP4D_combine_2_3_path.txt │ ├── BP4D_part1_path.txt │ ├── BP4D_part2_path.txt │ ├── BP4D_part3_path.txt │ ├── DISFA_combine_1_2_biocular.txt │ ├── DISFA_combine_1_2_land.txt │ ├── DISFA_combine_1_2_path.txt │ ├── DISFA_combine_1_3_path.txt │ ├── DISFA_combine_2_3_path.txt │ ├── DISFA_part1_path.txt │ ├── DISFA_part2_path.txt │ ├── DISFA_part3_path.txt │ └── reflect_49.txt ├── data_list.py ├── dataset ├── BP4D │ └── F001 │ │ └── T1 │ │ ├── 2440.jpg │ │ └── 2441.jpg ├── BP4D_combine_1_2_land.txt ├── DISFA │ └── SN002 │ │ ├── 0.jpg │ │ └── 1.jpg ├── DISFA_combine_1_2_66land.txt ├── DISFA_combine_1_2_land.txt ├── face_transform.py ├── read_disfa_49land.py ├── reflect_66.mat ├── write_AU_weight.py └── write_biocular.py ├── lr_schedule.py ├── network.py ├── pre_process.py ├── test_JAAv1.py ├── test_JAAv2.py ├── train_JAAv1.py ├── train_JAAv1_disfa.py ├── train_JAAv2.py ├── train_JAAv2_disfa.py └── util.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/README.md -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/LICENSE -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/README.md -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/images/1620298460804.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/images/1620298460804.gif -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/main.py -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/mainwindow.ui -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/models/__pycache__/common.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/models/__pycache__/common.cpython-39.pyc -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/models/__pycache__/experimental.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/models/__pycache__/experimental.cpython-39.pyc -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/models/common.py -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/models/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/models/experimental.py -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/models/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/models/export.py -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/models/hub/anchors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/models/hub/anchors.yaml -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/models/hub/yolov3-spp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/models/hub/yolov3-spp.yaml -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/models/hub/yolov3-tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/models/hub/yolov3-tiny.yaml -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/models/hub/yolov3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/models/hub/yolov3.yaml -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/models/hub/yolov5-fpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/models/hub/yolov5-fpn.yaml -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/models/hub/yolov5-p2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/models/hub/yolov5-p2.yaml -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/models/hub/yolov5-p6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/models/hub/yolov5-p6.yaml -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/models/hub/yolov5-p7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/models/hub/yolov5-p7.yaml -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/models/hub/yolov5-panet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/models/hub/yolov5-panet.yaml -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/models/hub/yolov5l6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/models/hub/yolov5l6.yaml -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/models/hub/yolov5m6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/models/hub/yolov5m6.yaml -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/models/hub/yolov5s6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/models/hub/yolov5s6.yaml -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/models/hub/yolov5x6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/models/hub/yolov5x6.yaml -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/models/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/models/yolo.py -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/models/yolov5l.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/models/yolov5l.yaml -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/models/yolov5m.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/models/yolov5m.yaml -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/models/yolov5s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/models/yolov5s.yaml -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/models/yolov5x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/models/yolov5x.yaml -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/mydetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/mydetect.py -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/myfatigue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/myfatigue.py -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/myframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/myframe.py -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/ui_mainwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/ui_mainwindow.py -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/utils/__pycache__/datasets.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/utils/__pycache__/datasets.cpython-39.pyc -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/utils/__pycache__/general.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/utils/__pycache__/general.cpython-39.pyc -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/utils/__pycache__/google_utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/utils/__pycache__/google_utils.cpython-39.pyc -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/utils/__pycache__/metrics.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/utils/__pycache__/metrics.cpython-39.pyc -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/utils/__pycache__/plots.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/utils/__pycache__/plots.cpython-39.pyc -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/utils/__pycache__/torch_utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/utils/__pycache__/torch_utils.cpython-39.pyc -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/utils/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/utils/activations.py -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/utils/autoanchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/utils/autoanchor.py -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/utils/datasets.py -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/utils/general.py -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/utils/google_app_engine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/utils/google_app_engine/Dockerfile -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/utils/google_app_engine/additional_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/utils/google_app_engine/additional_requirements.txt -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/utils/google_app_engine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/utils/google_app_engine/app.yaml -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/utils/google_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/utils/google_utils.py -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/utils/loss.py -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/utils/metrics.py -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/utils/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/utils/plots.py -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/utils/torch_utils.py -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/utils/wandb_logging/log_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/utils/wandb_logging/log_dataset.py -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/utils/wandb_logging/wandb_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/utils/wandb_logging/wandb_utils.py -------------------------------------------------------------------------------- /Yolov5-deepsort-behavior-detection-1.0/weights/best.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/Yolov5-deepsort-behavior-detection-1.0/weights/best.pt -------------------------------------------------------------------------------- /face_recognition/data/res/id_image_cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/face_recognition/data/res/id_image_cropped.png -------------------------------------------------------------------------------- /face_recognition/data/res/res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/face_recognition/data/res/res.png -------------------------------------------------------------------------------- /face_recognition/data/res/room_image_cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/face_recognition/data/res/room_image_cropped.png -------------------------------------------------------------------------------- /face_recognition/data/samples/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/face_recognition/data/samples/example.png -------------------------------------------------------------------------------- /face_recognition/data/samples/example2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/face_recognition/data/samples/example2.jpg -------------------------------------------------------------------------------- /face_recognition/data/samples/wangzhi_id.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/face_recognition/data/samples/wangzhi_id.jpg -------------------------------------------------------------------------------- /face_recognition/light_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/face_recognition/light_cnn.py -------------------------------------------------------------------------------- /face_recognition/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/face_recognition/main.py -------------------------------------------------------------------------------- /face_recognition/models/face_detector/haarcascade_frontalface_alt2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/face_recognition/models/face_detector/haarcascade_frontalface_alt2.xml -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/README.md -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/data/imgs/BP4D/F001/T1/2440.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/data/imgs/BP4D/F001/T1/2440.jpg -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/data/imgs/BP4D/F001/T1/2441.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/data/imgs/BP4D/F001/T1/2441.jpg -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/data/imgs/DISFA/SN002/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/data/imgs/DISFA/SN002/0.jpg -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/data/imgs/DISFA/SN002/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/data/imgs/DISFA/SN002/1.jpg -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/data/list/BP4D_combine_1_2_biocular.txt: -------------------------------------------------------------------------------- 1 | 4480.045320 2 | 4374.773733 3 | -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/data/list/BP4D_combine_1_2_land.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/data/list/BP4D_combine_1_2_land.txt -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/data/list/BP4D_combine_1_2_path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/data/list/BP4D_combine_1_2_path.txt -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/data/list/BP4D_combine_1_3_path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/data/list/BP4D_combine_1_3_path.txt -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/data/list/BP4D_combine_2_3_path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/data/list/BP4D_combine_2_3_path.txt -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/data/list/BP4D_part1_path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/data/list/BP4D_part1_path.txt -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/data/list/BP4D_part2_path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/data/list/BP4D_part2_path.txt -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/data/list/BP4D_part3_path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/data/list/BP4D_part3_path.txt -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/data/list/DISFA_combine_1_2_biocular.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/data/list/DISFA_combine_1_2_biocular.txt -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/data/list/DISFA_combine_1_2_land.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/data/list/DISFA_combine_1_2_land.txt -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/data/list/DISFA_combine_1_2_path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/data/list/DISFA_combine_1_2_path.txt -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/data/list/DISFA_combine_1_3_path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/data/list/DISFA_combine_1_3_path.txt -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/data/list/DISFA_combine_2_3_path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/data/list/DISFA_combine_2_3_path.txt -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/data/list/DISFA_part1_path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/data/list/DISFA_part1_path.txt -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/data/list/DISFA_part2_path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/data/list/DISFA_part2_path.txt -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/data/list/DISFA_part3_path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/data/list/DISFA_part3_path.txt -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/data/list/reflect_49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/data/list/reflect_49.txt -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/data_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/data_list.py -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/dataset/BP4D/F001/T1/2440.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/dataset/BP4D/F001/T1/2440.jpg -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/dataset/BP4D/F001/T1/2441.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/dataset/BP4D/F001/T1/2441.jpg -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/dataset/BP4D_combine_1_2_land.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/dataset/BP4D_combine_1_2_land.txt -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/dataset/DISFA/SN002/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/dataset/DISFA/SN002/0.jpg -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/dataset/DISFA/SN002/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/dataset/DISFA/SN002/1.jpg -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/dataset/DISFA_combine_1_2_66land.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/dataset/DISFA_combine_1_2_66land.txt -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/dataset/DISFA_combine_1_2_land.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/dataset/DISFA_combine_1_2_land.txt -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/dataset/face_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/dataset/face_transform.py -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/dataset/read_disfa_49land.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/dataset/read_disfa_49land.py -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/dataset/reflect_66.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/dataset/reflect_66.mat -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/dataset/write_AU_weight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/dataset/write_AU_weight.py -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/dataset/write_biocular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/dataset/write_biocular.py -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/lr_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/lr_schedule.py -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/network.py -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/pre_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/pre_process.py -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/test_JAAv1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/test_JAAv1.py -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/test_JAAv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/test_JAAv2.py -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/train_JAAv1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/train_JAAv1.py -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/train_JAAv1_disfa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/train_JAAv1_disfa.py -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/train_JAAv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/train_JAAv2.py -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/train_JAAv2_disfa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/train_JAAv2_disfa.py -------------------------------------------------------------------------------- /facial expression-PyTorch-JAANet-master/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mingzhixin/face-and-behavior/HEAD/facial expression-PyTorch-JAANet-master/util.py --------------------------------------------------------------------------------