├── LICENSE ├── README.md ├── cfg └── yolov3.cfg ├── data ├── coco.data ├── coco.names └── samples │ ├── c1s1_001051.jpg │ ├── c1s1_002301.jpg │ ├── c1s1_002326.jpg │ ├── c1s1_002351.jpg │ ├── c1s1_002376.jpg │ ├── c1s1_002401.jpg │ ├── c1s1_009376.jpg │ ├── c1s1_009451.jpg │ ├── c1s1_009476.jpg │ ├── c1s1_009526.jpg │ ├── c1s1_014601.jpg │ ├── c1s1_014776.jpg │ ├── c1s1_014901.jpg │ ├── c3s1_000501.jpg │ ├── c3s1_000551.jpg │ └── c3s1_001626.jpg ├── detect.py ├── models.py ├── query ├── 0001_c1s1_001051_00.jpg └── 0001_c6s1_009601_00.jpg ├── query_get.py ├── reid ├── config │ ├── __init__.py │ └── defaults.py ├── data │ ├── __init__.py │ ├── build.py │ ├── collate_batch.py │ ├── datasets │ │ ├── __init__.py │ │ ├── bases.py │ │ ├── dataset_loader.py │ │ ├── eval_reid.py │ │ └── market1501.py │ └── transforms │ │ ├── __init__.py │ │ ├── build.py │ │ └── transforms.py └── modeling │ ├── __init__.py │ ├── backbones │ ├── __init__.py │ ├── resnet.py │ └── resnet_ibn_a.py │ └── baseline.py ├── search.py ├── show.jpg └── utils ├── datasets.py ├── init.py ├── parse_config.py ├── torch_utils.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/README.md -------------------------------------------------------------------------------- /cfg/yolov3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/cfg/yolov3.cfg -------------------------------------------------------------------------------- /data/coco.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/data/coco.data -------------------------------------------------------------------------------- /data/coco.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/data/coco.names -------------------------------------------------------------------------------- /data/samples/c1s1_001051.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/data/samples/c1s1_001051.jpg -------------------------------------------------------------------------------- /data/samples/c1s1_002301.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/data/samples/c1s1_002301.jpg -------------------------------------------------------------------------------- /data/samples/c1s1_002326.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/data/samples/c1s1_002326.jpg -------------------------------------------------------------------------------- /data/samples/c1s1_002351.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/data/samples/c1s1_002351.jpg -------------------------------------------------------------------------------- /data/samples/c1s1_002376.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/data/samples/c1s1_002376.jpg -------------------------------------------------------------------------------- /data/samples/c1s1_002401.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/data/samples/c1s1_002401.jpg -------------------------------------------------------------------------------- /data/samples/c1s1_009376.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/data/samples/c1s1_009376.jpg -------------------------------------------------------------------------------- /data/samples/c1s1_009451.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/data/samples/c1s1_009451.jpg -------------------------------------------------------------------------------- /data/samples/c1s1_009476.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/data/samples/c1s1_009476.jpg -------------------------------------------------------------------------------- /data/samples/c1s1_009526.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/data/samples/c1s1_009526.jpg -------------------------------------------------------------------------------- /data/samples/c1s1_014601.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/data/samples/c1s1_014601.jpg -------------------------------------------------------------------------------- /data/samples/c1s1_014776.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/data/samples/c1s1_014776.jpg -------------------------------------------------------------------------------- /data/samples/c1s1_014901.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/data/samples/c1s1_014901.jpg -------------------------------------------------------------------------------- /data/samples/c3s1_000501.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/data/samples/c3s1_000501.jpg -------------------------------------------------------------------------------- /data/samples/c3s1_000551.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/data/samples/c3s1_000551.jpg -------------------------------------------------------------------------------- /data/samples/c3s1_001626.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/data/samples/c3s1_001626.jpg -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/detect.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/models.py -------------------------------------------------------------------------------- /query/0001_c1s1_001051_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/query/0001_c1s1_001051_00.jpg -------------------------------------------------------------------------------- /query/0001_c6s1_009601_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/query/0001_c6s1_009601_00.jpg -------------------------------------------------------------------------------- /query_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/query_get.py -------------------------------------------------------------------------------- /reid/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/reid/config/__init__.py -------------------------------------------------------------------------------- /reid/config/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/reid/config/defaults.py -------------------------------------------------------------------------------- /reid/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/reid/data/__init__.py -------------------------------------------------------------------------------- /reid/data/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/reid/data/build.py -------------------------------------------------------------------------------- /reid/data/collate_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/reid/data/collate_batch.py -------------------------------------------------------------------------------- /reid/data/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/reid/data/datasets/__init__.py -------------------------------------------------------------------------------- /reid/data/datasets/bases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/reid/data/datasets/bases.py -------------------------------------------------------------------------------- /reid/data/datasets/dataset_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/reid/data/datasets/dataset_loader.py -------------------------------------------------------------------------------- /reid/data/datasets/eval_reid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/reid/data/datasets/eval_reid.py -------------------------------------------------------------------------------- /reid/data/datasets/market1501.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/reid/data/datasets/market1501.py -------------------------------------------------------------------------------- /reid/data/transforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/reid/data/transforms/__init__.py -------------------------------------------------------------------------------- /reid/data/transforms/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/reid/data/transforms/build.py -------------------------------------------------------------------------------- /reid/data/transforms/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/reid/data/transforms/transforms.py -------------------------------------------------------------------------------- /reid/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/reid/modeling/__init__.py -------------------------------------------------------------------------------- /reid/modeling/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/reid/modeling/backbones/__init__.py -------------------------------------------------------------------------------- /reid/modeling/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/reid/modeling/backbones/resnet.py -------------------------------------------------------------------------------- /reid/modeling/backbones/resnet_ibn_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/reid/modeling/backbones/resnet_ibn_a.py -------------------------------------------------------------------------------- /reid/modeling/baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/reid/modeling/baseline.py -------------------------------------------------------------------------------- /search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/search.py -------------------------------------------------------------------------------- /show.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/show.jpg -------------------------------------------------------------------------------- /utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/utils/datasets.py -------------------------------------------------------------------------------- /utils/init.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/parse_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/utils/parse_config.py -------------------------------------------------------------------------------- /utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/utils/torch_utils.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/person_search_demo/HEAD/utils/utils.py --------------------------------------------------------------------------------