├── README.md ├── database └── create_reid_database.py ├── fig ├── dataset.jpg ├── intro.jpg ├── method1.jpg ├── method2.jpg ├── method3.jpg └── scene.jpg ├── reidnet ├── __pycache__ │ └── parser.cpython-39.pyc ├── main.py ├── model │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── fusion_trans.cpython-39.pyc │ │ ├── gnn_tse.cpython-39.pyc │ │ ├── loss.cpython-39.pyc │ │ ├── network.cpython-39.pyc │ │ └── tse.cpython-39.pyc │ ├── fusion_trans.py │ ├── gnn_tse.py │ ├── loss.py │ ├── network.py │ └── tse.py ├── parser.py └── train.sh ├── requirements.txt ├── run.sh └── util ├── __pycache__ ├── loss.cpython-39.pyc └── utils.cpython-39.pyc ├── loss.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/README.md -------------------------------------------------------------------------------- /database/create_reid_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/database/create_reid_database.py -------------------------------------------------------------------------------- /fig/dataset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/fig/dataset.jpg -------------------------------------------------------------------------------- /fig/intro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/fig/intro.jpg -------------------------------------------------------------------------------- /fig/method1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/fig/method1.jpg -------------------------------------------------------------------------------- /fig/method2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/fig/method2.jpg -------------------------------------------------------------------------------- /fig/method3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/fig/method3.jpg -------------------------------------------------------------------------------- /fig/scene.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/fig/scene.jpg -------------------------------------------------------------------------------- /reidnet/__pycache__/parser.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/reidnet/__pycache__/parser.cpython-39.pyc -------------------------------------------------------------------------------- /reidnet/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/reidnet/main.py -------------------------------------------------------------------------------- /reidnet/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/reidnet/model/__init__.py -------------------------------------------------------------------------------- /reidnet/model/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/reidnet/model/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /reidnet/model/__pycache__/fusion_trans.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/reidnet/model/__pycache__/fusion_trans.cpython-39.pyc -------------------------------------------------------------------------------- /reidnet/model/__pycache__/gnn_tse.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/reidnet/model/__pycache__/gnn_tse.cpython-39.pyc -------------------------------------------------------------------------------- /reidnet/model/__pycache__/loss.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/reidnet/model/__pycache__/loss.cpython-39.pyc -------------------------------------------------------------------------------- /reidnet/model/__pycache__/network.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/reidnet/model/__pycache__/network.cpython-39.pyc -------------------------------------------------------------------------------- /reidnet/model/__pycache__/tse.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/reidnet/model/__pycache__/tse.cpython-39.pyc -------------------------------------------------------------------------------- /reidnet/model/fusion_trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/reidnet/model/fusion_trans.py -------------------------------------------------------------------------------- /reidnet/model/gnn_tse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/reidnet/model/gnn_tse.py -------------------------------------------------------------------------------- /reidnet/model/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/reidnet/model/loss.py -------------------------------------------------------------------------------- /reidnet/model/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/reidnet/model/network.py -------------------------------------------------------------------------------- /reidnet/model/tse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/reidnet/model/tse.py -------------------------------------------------------------------------------- /reidnet/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/reidnet/parser.py -------------------------------------------------------------------------------- /reidnet/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/reidnet/train.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/run.sh -------------------------------------------------------------------------------- /util/__pycache__/loss.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/util/__pycache__/loss.cpython-39.pyc -------------------------------------------------------------------------------- /util/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/util/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /util/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/util/loss.py -------------------------------------------------------------------------------- /util/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GWxuan/ReID3D/HEAD/util/utils.py --------------------------------------------------------------------------------