├── LICENSE ├── README.md ├── ckpt ├── best_net_ClsPred.pth ├── best_net_DivideUpsample0.pth ├── best_net_DivideUpsample1.pth └── best_net_VggBackbone.pth ├── dataset ├── __init__.py ├── base_dataset.py ├── image_folder.py └── shtechparta_dataset.py ├── models ├── __init__.py ├── base_model.py ├── networks.py └── uep_model.py ├── options ├── __init__.py ├── base_options.py ├── test_options.py └── train_options.py ├── requirements.txt ├── test.py ├── utility ├── __init__.py ├── utils.py └── visualizer.py └── vis ├── net.png ├── result0.png └── sota.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/README.md -------------------------------------------------------------------------------- /ckpt/best_net_ClsPred.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/ckpt/best_net_ClsPred.pth -------------------------------------------------------------------------------- /ckpt/best_net_DivideUpsample0.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/ckpt/best_net_DivideUpsample0.pth -------------------------------------------------------------------------------- /ckpt/best_net_DivideUpsample1.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/ckpt/best_net_DivideUpsample1.pth -------------------------------------------------------------------------------- /ckpt/best_net_VggBackbone.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/ckpt/best_net_VggBackbone.pth -------------------------------------------------------------------------------- /dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/dataset/__init__.py -------------------------------------------------------------------------------- /dataset/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/dataset/base_dataset.py -------------------------------------------------------------------------------- /dataset/image_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/dataset/image_folder.py -------------------------------------------------------------------------------- /dataset/shtechparta_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/dataset/shtechparta_dataset.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/models/base_model.py -------------------------------------------------------------------------------- /models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/models/networks.py -------------------------------------------------------------------------------- /models/uep_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/models/uep_model.py -------------------------------------------------------------------------------- /options/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/options/__init__.py -------------------------------------------------------------------------------- /options/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/options/base_options.py -------------------------------------------------------------------------------- /options/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/options/test_options.py -------------------------------------------------------------------------------- /options/train_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/options/train_options.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/test.py -------------------------------------------------------------------------------- /utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utility/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/utility/utils.py -------------------------------------------------------------------------------- /utility/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/utility/visualizer.py -------------------------------------------------------------------------------- /vis/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/vis/net.png -------------------------------------------------------------------------------- /vis/result0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/vis/result0.png -------------------------------------------------------------------------------- /vis/sota.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TencentYoutuResearch/CrowdCounting-UEPNet/HEAD/vis/sota.png --------------------------------------------------------------------------------