├── .gitignore ├── LICENSE ├── README.md ├── data ├── README.md └── dataset_01 │ ├── README.md │ ├── frames │ ├── scene_01 │ │ ├── 000001_14_26_01_00_12_10_05.jpg │ │ ├── 000001_14_26_01_00_12_10_15.jpg │ │ ├── 000001_14_26_01_00_12_10_25.jpg │ │ ├── 000001_14_26_01_00_12_10_35.jpg │ │ ├── 000001_14_26_01_00_12_10_45.jpg │ │ ├── 000001_14_26_01_00_12_10_55.jpg │ │ ├── 000001_14_26_01_00_35_20_05.jpg │ │ ├── 000001_14_26_01_00_35_20_15.jpg │ │ ├── 000001_14_26_01_00_35_20_25.jpg │ │ └── 000001_14_26_01_00_35_20_35.jpg │ └── scene_02 │ │ ├── 000002_13_29_22_00_21_00_15.jpg │ │ ├── 000002_13_29_22_00_21_00_35.jpg │ │ ├── 000002_13_29_22_00_21_00_55.jpg │ │ ├── 000002_13_29_22_00_27_00_15.jpg │ │ ├── 000002_13_29_22_00_27_00_35.jpg │ │ ├── 000002_13_29_22_00_27_00_55.jpg │ │ ├── 000002_14_26_10_00_30_00_15.jpg │ │ ├── 000002_14_26_10_00_30_00_35.jpg │ │ ├── 000002_14_26_10_00_30_00_55.jpg │ │ └── 000002_14_26_10_00_33_30_15.jpg │ ├── labels │ ├── scene_01 │ │ ├── 000001_14_26_01_00_12_10_05.mat │ │ ├── 000001_14_26_01_00_12_10_15.mat │ │ ├── 000001_14_26_01_00_12_10_25.mat │ │ ├── 000001_14_26_01_00_12_10_35.mat │ │ ├── 000001_14_26_01_00_12_10_45.mat │ │ ├── 000001_14_26_01_00_12_10_55.mat │ │ ├── 000001_14_26_01_00_35_20_05.mat │ │ ├── 000001_14_26_01_00_35_20_15.mat │ │ ├── 000001_14_26_01_00_35_20_25.mat │ │ └── 000001_14_26_01_00_35_20_35.mat │ └── scene_02 │ │ ├── 000002_13_29_22_00_21_00_15.mat │ │ ├── 000002_13_29_22_00_21_00_35.mat │ │ ├── 000002_13_29_22_00_21_00_55.mat │ │ ├── 000002_13_29_22_00_27_00_15.mat │ │ ├── 000002_13_29_22_00_27_00_35.mat │ │ ├── 000002_13_29_22_00_27_00_55.mat │ │ ├── 000002_14_26_10_00_30_00_15.mat │ │ ├── 000002_14_26_10_00_30_00_35.mat │ │ ├── 000002_14_26_10_00_30_00_55.mat │ │ └── 000002_14_26_10_00_33_30_15.mat │ └── perspective │ ├── scene_01.mat │ └── scene_02.mat ├── scripts ├── gen_density_map.m └── gen_patch.m └── utils └── mkdir_if_not_exist.m /.gitignore: -------------------------------------------------------------------------------- 1 | *.m~ 2 | output 3 | 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/README.md -------------------------------------------------------------------------------- /data/dataset_01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/README.md -------------------------------------------------------------------------------- /data/dataset_01/frames/scene_01/000001_14_26_01_00_12_10_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/frames/scene_01/000001_14_26_01_00_12_10_05.jpg -------------------------------------------------------------------------------- /data/dataset_01/frames/scene_01/000001_14_26_01_00_12_10_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/frames/scene_01/000001_14_26_01_00_12_10_15.jpg -------------------------------------------------------------------------------- /data/dataset_01/frames/scene_01/000001_14_26_01_00_12_10_25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/frames/scene_01/000001_14_26_01_00_12_10_25.jpg -------------------------------------------------------------------------------- /data/dataset_01/frames/scene_01/000001_14_26_01_00_12_10_35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/frames/scene_01/000001_14_26_01_00_12_10_35.jpg -------------------------------------------------------------------------------- /data/dataset_01/frames/scene_01/000001_14_26_01_00_12_10_45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/frames/scene_01/000001_14_26_01_00_12_10_45.jpg -------------------------------------------------------------------------------- /data/dataset_01/frames/scene_01/000001_14_26_01_00_12_10_55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/frames/scene_01/000001_14_26_01_00_12_10_55.jpg -------------------------------------------------------------------------------- /data/dataset_01/frames/scene_01/000001_14_26_01_00_35_20_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/frames/scene_01/000001_14_26_01_00_35_20_05.jpg -------------------------------------------------------------------------------- /data/dataset_01/frames/scene_01/000001_14_26_01_00_35_20_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/frames/scene_01/000001_14_26_01_00_35_20_15.jpg -------------------------------------------------------------------------------- /data/dataset_01/frames/scene_01/000001_14_26_01_00_35_20_25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/frames/scene_01/000001_14_26_01_00_35_20_25.jpg -------------------------------------------------------------------------------- /data/dataset_01/frames/scene_01/000001_14_26_01_00_35_20_35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/frames/scene_01/000001_14_26_01_00_35_20_35.jpg -------------------------------------------------------------------------------- /data/dataset_01/frames/scene_02/000002_13_29_22_00_21_00_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/frames/scene_02/000002_13_29_22_00_21_00_15.jpg -------------------------------------------------------------------------------- /data/dataset_01/frames/scene_02/000002_13_29_22_00_21_00_35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/frames/scene_02/000002_13_29_22_00_21_00_35.jpg -------------------------------------------------------------------------------- /data/dataset_01/frames/scene_02/000002_13_29_22_00_21_00_55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/frames/scene_02/000002_13_29_22_00_21_00_55.jpg -------------------------------------------------------------------------------- /data/dataset_01/frames/scene_02/000002_13_29_22_00_27_00_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/frames/scene_02/000002_13_29_22_00_27_00_15.jpg -------------------------------------------------------------------------------- /data/dataset_01/frames/scene_02/000002_13_29_22_00_27_00_35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/frames/scene_02/000002_13_29_22_00_27_00_35.jpg -------------------------------------------------------------------------------- /data/dataset_01/frames/scene_02/000002_13_29_22_00_27_00_55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/frames/scene_02/000002_13_29_22_00_27_00_55.jpg -------------------------------------------------------------------------------- /data/dataset_01/frames/scene_02/000002_14_26_10_00_30_00_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/frames/scene_02/000002_14_26_10_00_30_00_15.jpg -------------------------------------------------------------------------------- /data/dataset_01/frames/scene_02/000002_14_26_10_00_30_00_35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/frames/scene_02/000002_14_26_10_00_30_00_35.jpg -------------------------------------------------------------------------------- /data/dataset_01/frames/scene_02/000002_14_26_10_00_30_00_55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/frames/scene_02/000002_14_26_10_00_30_00_55.jpg -------------------------------------------------------------------------------- /data/dataset_01/frames/scene_02/000002_14_26_10_00_33_30_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/frames/scene_02/000002_14_26_10_00_33_30_15.jpg -------------------------------------------------------------------------------- /data/dataset_01/labels/scene_01/000001_14_26_01_00_12_10_05.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/labels/scene_01/000001_14_26_01_00_12_10_05.mat -------------------------------------------------------------------------------- /data/dataset_01/labels/scene_01/000001_14_26_01_00_12_10_15.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/labels/scene_01/000001_14_26_01_00_12_10_15.mat -------------------------------------------------------------------------------- /data/dataset_01/labels/scene_01/000001_14_26_01_00_12_10_25.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/labels/scene_01/000001_14_26_01_00_12_10_25.mat -------------------------------------------------------------------------------- /data/dataset_01/labels/scene_01/000001_14_26_01_00_12_10_35.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/labels/scene_01/000001_14_26_01_00_12_10_35.mat -------------------------------------------------------------------------------- /data/dataset_01/labels/scene_01/000001_14_26_01_00_12_10_45.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/labels/scene_01/000001_14_26_01_00_12_10_45.mat -------------------------------------------------------------------------------- /data/dataset_01/labels/scene_01/000001_14_26_01_00_12_10_55.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/labels/scene_01/000001_14_26_01_00_12_10_55.mat -------------------------------------------------------------------------------- /data/dataset_01/labels/scene_01/000001_14_26_01_00_35_20_05.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/labels/scene_01/000001_14_26_01_00_35_20_05.mat -------------------------------------------------------------------------------- /data/dataset_01/labels/scene_01/000001_14_26_01_00_35_20_15.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/labels/scene_01/000001_14_26_01_00_35_20_15.mat -------------------------------------------------------------------------------- /data/dataset_01/labels/scene_01/000001_14_26_01_00_35_20_25.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/labels/scene_01/000001_14_26_01_00_35_20_25.mat -------------------------------------------------------------------------------- /data/dataset_01/labels/scene_01/000001_14_26_01_00_35_20_35.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/labels/scene_01/000001_14_26_01_00_35_20_35.mat -------------------------------------------------------------------------------- /data/dataset_01/labels/scene_02/000002_13_29_22_00_21_00_15.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/labels/scene_02/000002_13_29_22_00_21_00_15.mat -------------------------------------------------------------------------------- /data/dataset_01/labels/scene_02/000002_13_29_22_00_21_00_35.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/labels/scene_02/000002_13_29_22_00_21_00_35.mat -------------------------------------------------------------------------------- /data/dataset_01/labels/scene_02/000002_13_29_22_00_21_00_55.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/labels/scene_02/000002_13_29_22_00_21_00_55.mat -------------------------------------------------------------------------------- /data/dataset_01/labels/scene_02/000002_13_29_22_00_27_00_15.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/labels/scene_02/000002_13_29_22_00_27_00_15.mat -------------------------------------------------------------------------------- /data/dataset_01/labels/scene_02/000002_13_29_22_00_27_00_35.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/labels/scene_02/000002_13_29_22_00_27_00_35.mat -------------------------------------------------------------------------------- /data/dataset_01/labels/scene_02/000002_13_29_22_00_27_00_55.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/labels/scene_02/000002_13_29_22_00_27_00_55.mat -------------------------------------------------------------------------------- /data/dataset_01/labels/scene_02/000002_14_26_10_00_30_00_15.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/labels/scene_02/000002_14_26_10_00_30_00_15.mat -------------------------------------------------------------------------------- /data/dataset_01/labels/scene_02/000002_14_26_10_00_30_00_35.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/labels/scene_02/000002_14_26_10_00_30_00_35.mat -------------------------------------------------------------------------------- /data/dataset_01/labels/scene_02/000002_14_26_10_00_30_00_55.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/labels/scene_02/000002_14_26_10_00_30_00_55.mat -------------------------------------------------------------------------------- /data/dataset_01/labels/scene_02/000002_14_26_10_00_33_30_15.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/labels/scene_02/000002_14_26_10_00_33_30_15.mat -------------------------------------------------------------------------------- /data/dataset_01/perspective/scene_01.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/perspective/scene_01.mat -------------------------------------------------------------------------------- /data/dataset_01/perspective/scene_02.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/data/dataset_01/perspective/scene_02.mat -------------------------------------------------------------------------------- /scripts/gen_density_map.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/scripts/gen_density_map.m -------------------------------------------------------------------------------- /scripts/gen_patch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/scripts/gen_patch.m -------------------------------------------------------------------------------- /utils/mkdir_if_not_exist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wk910930/crowd_density_segmentation/HEAD/utils/mkdir_if_not_exist.m --------------------------------------------------------------------------------