├── .gitignore ├── README.md ├── heatmap.py ├── keras_modelB ├── model.json └── weights.h5 ├── keras_test.py ├── keras_train.py ├── modelA ├── checkpoint ├── model.ckpt.data-00000-of-00001 ├── model.ckpt.index └── model.ckpt.meta ├── modelB ├── checkpoint ├── model.ckpt.data-00000-of-00001 ├── model.ckpt.index └── model.ckpt.meta ├── network.py ├── samples ├── heat_A_1_act_171.png ├── heat_A_1_pre_589.png ├── heat_A_2_act_1110.png ├── heat_A_2_pre_1246.png ├── heat_A_3_act_301.png ├── heat_A_3_pre_342.png ├── heat_A_4_act_169.png ├── heat_A_4_pre_178.png ├── heat_A_5_act_818.png ├── heat_A_5_pre_819.png ├── heat_B_1_act_22.png ├── heat_B_1_pre_35.png ├── heat_B_2_act_51.png ├── heat_B_2_pre_56.png ├── heat_B_3_act_60.png ├── heat_B_3_pre_45.png ├── heat_B_4_act_94.png ├── heat_B_4_pre_80.png ├── heat_B_5_act_81.png └── heat_B_5_pre_42.png ├── test.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/README.md -------------------------------------------------------------------------------- /heatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/heatmap.py -------------------------------------------------------------------------------- /keras_modelB/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/keras_modelB/model.json -------------------------------------------------------------------------------- /keras_modelB/weights.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/keras_modelB/weights.h5 -------------------------------------------------------------------------------- /keras_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/keras_test.py -------------------------------------------------------------------------------- /keras_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/keras_train.py -------------------------------------------------------------------------------- /modelA/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/modelA/checkpoint -------------------------------------------------------------------------------- /modelA/model.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/modelA/model.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /modelA/model.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/modelA/model.ckpt.index -------------------------------------------------------------------------------- /modelA/model.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/modelA/model.ckpt.meta -------------------------------------------------------------------------------- /modelB/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/modelB/checkpoint -------------------------------------------------------------------------------- /modelB/model.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/modelB/model.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /modelB/model.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/modelB/model.ckpt.index -------------------------------------------------------------------------------- /modelB/model.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/modelB/model.ckpt.meta -------------------------------------------------------------------------------- /network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/network.py -------------------------------------------------------------------------------- /samples/heat_A_1_act_171.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/samples/heat_A_1_act_171.png -------------------------------------------------------------------------------- /samples/heat_A_1_pre_589.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/samples/heat_A_1_pre_589.png -------------------------------------------------------------------------------- /samples/heat_A_2_act_1110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/samples/heat_A_2_act_1110.png -------------------------------------------------------------------------------- /samples/heat_A_2_pre_1246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/samples/heat_A_2_pre_1246.png -------------------------------------------------------------------------------- /samples/heat_A_3_act_301.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/samples/heat_A_3_act_301.png -------------------------------------------------------------------------------- /samples/heat_A_3_pre_342.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/samples/heat_A_3_pre_342.png -------------------------------------------------------------------------------- /samples/heat_A_4_act_169.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/samples/heat_A_4_act_169.png -------------------------------------------------------------------------------- /samples/heat_A_4_pre_178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/samples/heat_A_4_pre_178.png -------------------------------------------------------------------------------- /samples/heat_A_5_act_818.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/samples/heat_A_5_act_818.png -------------------------------------------------------------------------------- /samples/heat_A_5_pre_819.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/samples/heat_A_5_pre_819.png -------------------------------------------------------------------------------- /samples/heat_B_1_act_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/samples/heat_B_1_act_22.png -------------------------------------------------------------------------------- /samples/heat_B_1_pre_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/samples/heat_B_1_pre_35.png -------------------------------------------------------------------------------- /samples/heat_B_2_act_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/samples/heat_B_2_act_51.png -------------------------------------------------------------------------------- /samples/heat_B_2_pre_56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/samples/heat_B_2_pre_56.png -------------------------------------------------------------------------------- /samples/heat_B_3_act_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/samples/heat_B_3_act_60.png -------------------------------------------------------------------------------- /samples/heat_B_3_pre_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/samples/heat_B_3_pre_45.png -------------------------------------------------------------------------------- /samples/heat_B_4_act_94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/samples/heat_B_4_act_94.png -------------------------------------------------------------------------------- /samples/heat_B_4_pre_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/samples/heat_B_4_pre_80.png -------------------------------------------------------------------------------- /samples/heat_B_5_act_81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/samples/heat_B_5_act_81.png -------------------------------------------------------------------------------- /samples/heat_B_5_pre_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/samples/heat_B_5_pre_42.png -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uestcchicken/crowd-counting-MCNN/HEAD/train.py --------------------------------------------------------------------------------