├── .gitignore ├── README.md ├── package ├── __init__.py ├── dataset │ ├── Dataset.py │ ├── PreProcessImage.py │ ├── Prefetcher.py │ ├── TestSet.py │ ├── TrainSet.py │ └── __init__.py ├── model │ ├── Model.py │ ├── __init__.py │ └── resnet.py └── utils │ ├── __init__.py │ ├── dataset_utils.py │ ├── distance.py │ ├── metric.py │ ├── re_ranking.py │ ├── utils.py │ └── visualization.py ├── requirements.txt └── script ├── dataset ├── transform_cuhk03.py ├── transform_duke.py └── transform_market1501.py └── experiment ├── sw_occlude.py ├── sw_occlude.sh ├── train.py └── train.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanghoujing/AOS4ReID/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanghoujing/AOS4ReID/HEAD/README.md -------------------------------------------------------------------------------- /package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/dataset/Dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanghoujing/AOS4ReID/HEAD/package/dataset/Dataset.py -------------------------------------------------------------------------------- /package/dataset/PreProcessImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanghoujing/AOS4ReID/HEAD/package/dataset/PreProcessImage.py -------------------------------------------------------------------------------- /package/dataset/Prefetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanghoujing/AOS4ReID/HEAD/package/dataset/Prefetcher.py -------------------------------------------------------------------------------- /package/dataset/TestSet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanghoujing/AOS4ReID/HEAD/package/dataset/TestSet.py -------------------------------------------------------------------------------- /package/dataset/TrainSet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanghoujing/AOS4ReID/HEAD/package/dataset/TrainSet.py -------------------------------------------------------------------------------- /package/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanghoujing/AOS4ReID/HEAD/package/dataset/__init__.py -------------------------------------------------------------------------------- /package/model/Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanghoujing/AOS4ReID/HEAD/package/model/Model.py -------------------------------------------------------------------------------- /package/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/model/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanghoujing/AOS4ReID/HEAD/package/model/resnet.py -------------------------------------------------------------------------------- /package/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/utils/dataset_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanghoujing/AOS4ReID/HEAD/package/utils/dataset_utils.py -------------------------------------------------------------------------------- /package/utils/distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanghoujing/AOS4ReID/HEAD/package/utils/distance.py -------------------------------------------------------------------------------- /package/utils/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanghoujing/AOS4ReID/HEAD/package/utils/metric.py -------------------------------------------------------------------------------- /package/utils/re_ranking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanghoujing/AOS4ReID/HEAD/package/utils/re_ranking.py -------------------------------------------------------------------------------- /package/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanghoujing/AOS4ReID/HEAD/package/utils/utils.py -------------------------------------------------------------------------------- /package/utils/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanghoujing/AOS4ReID/HEAD/package/utils/visualization.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanghoujing/AOS4ReID/HEAD/requirements.txt -------------------------------------------------------------------------------- /script/dataset/transform_cuhk03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanghoujing/AOS4ReID/HEAD/script/dataset/transform_cuhk03.py -------------------------------------------------------------------------------- /script/dataset/transform_duke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanghoujing/AOS4ReID/HEAD/script/dataset/transform_duke.py -------------------------------------------------------------------------------- /script/dataset/transform_market1501.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanghoujing/AOS4ReID/HEAD/script/dataset/transform_market1501.py -------------------------------------------------------------------------------- /script/experiment/sw_occlude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanghoujing/AOS4ReID/HEAD/script/experiment/sw_occlude.py -------------------------------------------------------------------------------- /script/experiment/sw_occlude.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanghoujing/AOS4ReID/HEAD/script/experiment/sw_occlude.sh -------------------------------------------------------------------------------- /script/experiment/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanghoujing/AOS4ReID/HEAD/script/experiment/train.py -------------------------------------------------------------------------------- /script/experiment/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huanghoujing/AOS4ReID/HEAD/script/experiment/train.sh --------------------------------------------------------------------------------