├── .gitignore ├── README.md ├── base ├── __init__.py ├── base_network.py └── unfixed_network.py ├── cuhk_crowd.md ├── img └── architecture.png ├── tools ├── __init__.py ├── beautiful_output.py ├── create_dataset.py └── helper.py └── train.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | data/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svip-lab/CIDNN/HEAD/README.md -------------------------------------------------------------------------------- /base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svip-lab/CIDNN/HEAD/base/__init__.py -------------------------------------------------------------------------------- /base/base_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svip-lab/CIDNN/HEAD/base/base_network.py -------------------------------------------------------------------------------- /base/unfixed_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svip-lab/CIDNN/HEAD/base/unfixed_network.py -------------------------------------------------------------------------------- /cuhk_crowd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svip-lab/CIDNN/HEAD/cuhk_crowd.md -------------------------------------------------------------------------------- /img/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svip-lab/CIDNN/HEAD/img/architecture.png -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svip-lab/CIDNN/HEAD/tools/__init__.py -------------------------------------------------------------------------------- /tools/beautiful_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svip-lab/CIDNN/HEAD/tools/beautiful_output.py -------------------------------------------------------------------------------- /tools/create_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svip-lab/CIDNN/HEAD/tools/create_dataset.py -------------------------------------------------------------------------------- /tools/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svip-lab/CIDNN/HEAD/tools/helper.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svip-lab/CIDNN/HEAD/train.py --------------------------------------------------------------------------------