├── README.md ├── bibtex ├── image.jpg ├── main_mars.py ├── reid ├── __init__.py ├── data │ ├── __init__.py │ ├── dataloader.py │ ├── dataloader.py~ │ ├── preprocessor.py │ ├── sampler.py │ └── transforms.py ├── data_manager │ ├── __init__.py │ ├── base.py │ ├── iotools.py │ ├── mars_test.py │ ├── mars_train.py │ └── mars_train.py~ ├── datasets │ ├── __init__.py │ ├── cuhk03.py │ ├── dataset.py │ ├── dukemtmc.py │ ├── ilidsvid.py │ ├── market1501.py │ ├── mars_train.py │ └── prid2011.py ├── evaluator │ ├── __init__.py │ ├── binaryevaluator.py │ ├── classification.py │ ├── crfevaluator.py │ ├── evaluators.py │ ├── msevaluator.py │ ├── partialcrfevaluator.py │ ├── ranking.py │ └── verifievaluator.py ├── feature_extraction │ ├── __init__.py │ ├── cnn.py │ └── database.py ├── loss │ ├── __init__.py │ ├── crf_loss.py │ ├── mul_oimloss.py │ ├── mul_pairloss.py │ ├── oim_loss.py │ ├── pairloss.py │ ├── pairwise.py │ └── triplet.py ├── models │ ├── __init__.py │ ├── classifer.py │ ├── crf_mf.py │ ├── inception.py │ ├── mulclassifier.py │ ├── mulcrf_mf.py │ ├── resfpnnet.py │ ├── resnet.py │ └── simscores.py ├── train │ ├── __init__.py │ └── trainers.py └── utils │ ├── __init__.py │ ├── data_loader.py~ │ ├── dataset_loader.py │ ├── dataset_loader.py~ │ ├── iotools.py │ ├── logging.py │ ├── meters.py │ ├── osutils.py │ └── serialization.py └── test_mars.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/README.md -------------------------------------------------------------------------------- /bibtex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/bibtex -------------------------------------------------------------------------------- /image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/image.jpg -------------------------------------------------------------------------------- /main_mars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/main_mars.py -------------------------------------------------------------------------------- /reid/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/__init__.py -------------------------------------------------------------------------------- /reid/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/data/__init__.py -------------------------------------------------------------------------------- /reid/data/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/data/dataloader.py -------------------------------------------------------------------------------- /reid/data/dataloader.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/data/dataloader.py~ -------------------------------------------------------------------------------- /reid/data/preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/data/preprocessor.py -------------------------------------------------------------------------------- /reid/data/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/data/sampler.py -------------------------------------------------------------------------------- /reid/data/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/data/transforms.py -------------------------------------------------------------------------------- /reid/data_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/data_manager/__init__.py -------------------------------------------------------------------------------- /reid/data_manager/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/data_manager/base.py -------------------------------------------------------------------------------- /reid/data_manager/iotools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/data_manager/iotools.py -------------------------------------------------------------------------------- /reid/data_manager/mars_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/data_manager/mars_test.py -------------------------------------------------------------------------------- /reid/data_manager/mars_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/data_manager/mars_train.py -------------------------------------------------------------------------------- /reid/data_manager/mars_train.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/data_manager/mars_train.py~ -------------------------------------------------------------------------------- /reid/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/datasets/__init__.py -------------------------------------------------------------------------------- /reid/datasets/cuhk03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/datasets/cuhk03.py -------------------------------------------------------------------------------- /reid/datasets/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/datasets/dataset.py -------------------------------------------------------------------------------- /reid/datasets/dukemtmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/datasets/dukemtmc.py -------------------------------------------------------------------------------- /reid/datasets/ilidsvid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/datasets/ilidsvid.py -------------------------------------------------------------------------------- /reid/datasets/market1501.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/datasets/market1501.py -------------------------------------------------------------------------------- /reid/datasets/mars_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/datasets/mars_train.py -------------------------------------------------------------------------------- /reid/datasets/prid2011.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/datasets/prid2011.py -------------------------------------------------------------------------------- /reid/evaluator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/evaluator/__init__.py -------------------------------------------------------------------------------- /reid/evaluator/binaryevaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/evaluator/binaryevaluator.py -------------------------------------------------------------------------------- /reid/evaluator/classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/evaluator/classification.py -------------------------------------------------------------------------------- /reid/evaluator/crfevaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/evaluator/crfevaluator.py -------------------------------------------------------------------------------- /reid/evaluator/evaluators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/evaluator/evaluators.py -------------------------------------------------------------------------------- /reid/evaluator/msevaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/evaluator/msevaluator.py -------------------------------------------------------------------------------- /reid/evaluator/partialcrfevaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/evaluator/partialcrfevaluator.py -------------------------------------------------------------------------------- /reid/evaluator/ranking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/evaluator/ranking.py -------------------------------------------------------------------------------- /reid/evaluator/verifievaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/evaluator/verifievaluator.py -------------------------------------------------------------------------------- /reid/feature_extraction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/feature_extraction/__init__.py -------------------------------------------------------------------------------- /reid/feature_extraction/cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/feature_extraction/cnn.py -------------------------------------------------------------------------------- /reid/feature_extraction/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/feature_extraction/database.py -------------------------------------------------------------------------------- /reid/loss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/loss/__init__.py -------------------------------------------------------------------------------- /reid/loss/crf_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/loss/crf_loss.py -------------------------------------------------------------------------------- /reid/loss/mul_oimloss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/loss/mul_oimloss.py -------------------------------------------------------------------------------- /reid/loss/mul_pairloss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/loss/mul_pairloss.py -------------------------------------------------------------------------------- /reid/loss/oim_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/loss/oim_loss.py -------------------------------------------------------------------------------- /reid/loss/pairloss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/loss/pairloss.py -------------------------------------------------------------------------------- /reid/loss/pairwise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/loss/pairwise.py -------------------------------------------------------------------------------- /reid/loss/triplet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/loss/triplet.py -------------------------------------------------------------------------------- /reid/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/models/__init__.py -------------------------------------------------------------------------------- /reid/models/classifer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/models/classifer.py -------------------------------------------------------------------------------- /reid/models/crf_mf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/models/crf_mf.py -------------------------------------------------------------------------------- /reid/models/inception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/models/inception.py -------------------------------------------------------------------------------- /reid/models/mulclassifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/models/mulclassifier.py -------------------------------------------------------------------------------- /reid/models/mulcrf_mf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/models/mulcrf_mf.py -------------------------------------------------------------------------------- /reid/models/resfpnnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/models/resfpnnet.py -------------------------------------------------------------------------------- /reid/models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/models/resnet.py -------------------------------------------------------------------------------- /reid/models/simscores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/models/simscores.py -------------------------------------------------------------------------------- /reid/train/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/train/__init__.py -------------------------------------------------------------------------------- /reid/train/trainers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/train/trainers.py -------------------------------------------------------------------------------- /reid/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/utils/__init__.py -------------------------------------------------------------------------------- /reid/utils/data_loader.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/utils/data_loader.py~ -------------------------------------------------------------------------------- /reid/utils/dataset_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/utils/dataset_loader.py -------------------------------------------------------------------------------- /reid/utils/dataset_loader.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/utils/dataset_loader.py~ -------------------------------------------------------------------------------- /reid/utils/iotools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/utils/iotools.py -------------------------------------------------------------------------------- /reid/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/utils/logging.py -------------------------------------------------------------------------------- /reid/utils/meters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/utils/meters.py -------------------------------------------------------------------------------- /reid/utils/osutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/utils/osutils.py -------------------------------------------------------------------------------- /reid/utils/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/reid/utils/serialization.py -------------------------------------------------------------------------------- /test_mars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhangLeUestc/VideoReid-TPAMI2020/HEAD/test_mars.py --------------------------------------------------------------------------------