├── README.md ├── data_manager.py ├── eval_metrics.py ├── log └── log_train.txt ├── losses.py ├── main_video_person_reid.py ├── models ├── ResNet.py ├── __init__.py ├── __pycache__ │ ├── DenseNet.cpython-35.pyc │ ├── MuDeep.cpython-35.pyc │ ├── ResNet.cpython-35.pyc │ └── __init__.cpython-35.pyc └── resnet3d.py ├── samplers.py ├── transforms.py ├── utils.py └── video_loader.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiyanggao/Video-Person-ReID/HEAD/README.md -------------------------------------------------------------------------------- /data_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiyanggao/Video-Person-ReID/HEAD/data_manager.py -------------------------------------------------------------------------------- /eval_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiyanggao/Video-Person-ReID/HEAD/eval_metrics.py -------------------------------------------------------------------------------- /log/log_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiyanggao/Video-Person-ReID/HEAD/log/log_train.txt -------------------------------------------------------------------------------- /losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiyanggao/Video-Person-ReID/HEAD/losses.py -------------------------------------------------------------------------------- /main_video_person_reid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiyanggao/Video-Person-ReID/HEAD/main_video_person_reid.py -------------------------------------------------------------------------------- /models/ResNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiyanggao/Video-Person-ReID/HEAD/models/ResNet.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiyanggao/Video-Person-ReID/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/__pycache__/DenseNet.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiyanggao/Video-Person-ReID/HEAD/models/__pycache__/DenseNet.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/MuDeep.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiyanggao/Video-Person-ReID/HEAD/models/__pycache__/MuDeep.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/ResNet.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiyanggao/Video-Person-ReID/HEAD/models/__pycache__/ResNet.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiyanggao/Video-Person-ReID/HEAD/models/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /models/resnet3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiyanggao/Video-Person-ReID/HEAD/models/resnet3d.py -------------------------------------------------------------------------------- /samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiyanggao/Video-Person-ReID/HEAD/samplers.py -------------------------------------------------------------------------------- /transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiyanggao/Video-Person-ReID/HEAD/transforms.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiyanggao/Video-Person-ReID/HEAD/utils.py -------------------------------------------------------------------------------- /video_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiyanggao/Video-Person-ReID/HEAD/video_loader.py --------------------------------------------------------------------------------