├── GKLT-master ├── .gitattributes ├── .gitignore ├── README.txt ├── cv100.dll ├── cvaux100.dll ├── cvcam100.dll ├── cxcore100.dll ├── highgui100.dll ├── klt_tracker.exe ├── libguide40.dll ├── run_script.py └── source_gKLT │ ├── klt_new.sln │ └── klt_new │ ├── ReadMe.txt │ ├── base.h │ ├── convolve.c │ ├── convolve.h │ ├── error.c │ ├── error.h │ ├── klt.c │ ├── klt.h │ ├── klt_new.cpp │ ├── klt_new.vcproj │ ├── klt_util.c │ ├── klt_util.h │ ├── main.cpp │ ├── pnmio.c │ ├── pnmio.h │ ├── pyramid.c │ ├── pyramid.h │ ├── selectGoodFeatures.c │ ├── stdafx.cpp │ ├── stdafx.h │ ├── storeFeatures.c │ ├── targetver.h │ ├── trackFeatures.c │ ├── trk.cpp │ ├── trk.h │ └── writeFeatures.c ├── README.md ├── collectiveness-master ├── SDP_initialXwithNoise.m ├── SDP_order.m ├── SDP_updateXwithOutlier.m ├── SDPmodel.m ├── collectiveMerging.m ├── genOptTopicIm_color.m ├── measureCollectiveness.m ├── readTraks.m ├── readme.txt ├── trk2XV.m └── util │ ├── rowcolop_core.cpp │ ├── rowcolop_core.mexw32 │ ├── rowcolop_core.mexw64 │ ├── sladdrowcols.m │ ├── slmetric_pw.m │ └── slmulrowcols.m ├── exp_video └── 002_34_008681798-people-walk-europe-1.avi ├── fun_background_simple.m ├── fun_channel_motion.m ├── fun_channel_rgb.m ├── fun_coll.m ├── fun_conf.m ├── fun_klt.m ├── fun_preprocess_klt.m ├── fun_readTraks.m ├── fun_smooth_trk.m ├── fun_stab.m ├── fun_video2img.m ├── gcatoolbox ├── MeanShiftCluster.m ├── clustering_affinity.m ├── clustering_pagerank.m ├── colorrand.m ├── distmat.m ├── gdlfiles │ ├── gdlAffinity.m │ ├── gdlAffinity_c.cpp │ ├── gdlAffinity_c.mexw64 │ ├── gdlAffinity_increment.m │ ├── gdlCompileMex.m │ ├── gdlComputeAffinity.cpp │ ├── gdlComputeDirectedAffinity.cpp │ ├── gdlDirectedAffinity.m │ ├── gdlDirectedAffinity_batch_c.cpp │ ├── gdlDirectedAffinity_batch_c.mexw64 │ ├── gdlDirectedAffinity_c.cpp │ ├── gdlDirectedAffinity_c.mexw64 │ ├── gdlInitAffinityTable_c.cpp │ ├── gdlInitAffinityTable_c.mexw64 │ ├── gdlInitAffinityTable_knn_c.cpp │ ├── gdlInitAffinityTable_knn_c.mexw64 │ ├── gdlMergingKNN_c.m │ └── gdlMerging_c.m ├── graphAgglomerativeClustering.m ├── gt_comparison.m ├── mexfiles │ ├── compileMexFiles.m │ ├── gacBuildDigraph_c.m │ ├── gacBuildLlinks_cwarpper.m │ ├── gacFindKcCluster.m │ ├── gacLlinks_c.cpp │ ├── gacLlinks_c.mexw64 │ ├── gacMink.m │ ├── gacOnelink_c.cpp │ ├── gacOnelink_c.mexw64 │ ├── gacPartialMin_knn_c.cpp │ ├── gacPartialMin_knn_c.mexw64 │ ├── gacPartialMin_triu_c.cpp │ ├── gacPartialMin_triu_c.mexw64 │ ├── gacPartial_sort.cpp │ ├── gacPartial_sort.h │ └── gacPartial_sort.mexw64 ├── rank2.m ├── readme.txt └── testMeanShift.m ├── main.m ├── motion_norm.mat ├── readme_channel.html ├── readme_channel.md └── util ├── CFunifyClusterEachtime.m ├── distmat.m ├── fun_cell2num.m ├── fun_trk2XV.m ├── fun_trkInfo.m └── fun_trkInfo_temp.m /GKLT-master/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/.gitattributes -------------------------------------------------------------------------------- /GKLT-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/.gitignore -------------------------------------------------------------------------------- /GKLT-master/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/README.txt -------------------------------------------------------------------------------- /GKLT-master/cv100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/cv100.dll -------------------------------------------------------------------------------- /GKLT-master/cvaux100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/cvaux100.dll -------------------------------------------------------------------------------- /GKLT-master/cvcam100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/cvcam100.dll -------------------------------------------------------------------------------- /GKLT-master/cxcore100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/cxcore100.dll -------------------------------------------------------------------------------- /GKLT-master/highgui100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/highgui100.dll -------------------------------------------------------------------------------- /GKLT-master/klt_tracker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/klt_tracker.exe -------------------------------------------------------------------------------- /GKLT-master/libguide40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/libguide40.dll -------------------------------------------------------------------------------- /GKLT-master/run_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/run_script.py -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new.sln -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/ReadMe.txt -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/base.h -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/convolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/convolve.c -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/convolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/convolve.h -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/error.c -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/error.h -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/klt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/klt.c -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/klt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/klt.h -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/klt_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/klt_new.cpp -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/klt_new.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/klt_new.vcproj -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/klt_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/klt_util.c -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/klt_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/klt_util.h -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/main.cpp -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/pnmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/pnmio.c -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/pnmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/pnmio.h -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/pyramid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/pyramid.c -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/pyramid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/pyramid.h -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/selectGoodFeatures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/selectGoodFeatures.c -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/stdafx.cpp -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/stdafx.h -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/storeFeatures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/storeFeatures.c -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/targetver.h -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/trackFeatures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/trackFeatures.c -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/trk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/trk.cpp -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/trk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/trk.h -------------------------------------------------------------------------------- /GKLT-master/source_gKLT/klt_new/writeFeatures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/GKLT-master/source_gKLT/klt_new/writeFeatures.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/README.md -------------------------------------------------------------------------------- /collectiveness-master/SDP_initialXwithNoise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/collectiveness-master/SDP_initialXwithNoise.m -------------------------------------------------------------------------------- /collectiveness-master/SDP_order.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/collectiveness-master/SDP_order.m -------------------------------------------------------------------------------- /collectiveness-master/SDP_updateXwithOutlier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/collectiveness-master/SDP_updateXwithOutlier.m -------------------------------------------------------------------------------- /collectiveness-master/SDPmodel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/collectiveness-master/SDPmodel.m -------------------------------------------------------------------------------- /collectiveness-master/collectiveMerging.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/collectiveness-master/collectiveMerging.m -------------------------------------------------------------------------------- /collectiveness-master/genOptTopicIm_color.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/collectiveness-master/genOptTopicIm_color.m -------------------------------------------------------------------------------- /collectiveness-master/measureCollectiveness.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/collectiveness-master/measureCollectiveness.m -------------------------------------------------------------------------------- /collectiveness-master/readTraks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/collectiveness-master/readTraks.m -------------------------------------------------------------------------------- /collectiveness-master/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/collectiveness-master/readme.txt -------------------------------------------------------------------------------- /collectiveness-master/trk2XV.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/collectiveness-master/trk2XV.m -------------------------------------------------------------------------------- /collectiveness-master/util/rowcolop_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/collectiveness-master/util/rowcolop_core.cpp -------------------------------------------------------------------------------- /collectiveness-master/util/rowcolop_core.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/collectiveness-master/util/rowcolop_core.mexw32 -------------------------------------------------------------------------------- /collectiveness-master/util/rowcolop_core.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/collectiveness-master/util/rowcolop_core.mexw64 -------------------------------------------------------------------------------- /collectiveness-master/util/sladdrowcols.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/collectiveness-master/util/sladdrowcols.m -------------------------------------------------------------------------------- /collectiveness-master/util/slmetric_pw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/collectiveness-master/util/slmetric_pw.m -------------------------------------------------------------------------------- /collectiveness-master/util/slmulrowcols.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/collectiveness-master/util/slmulrowcols.m -------------------------------------------------------------------------------- /exp_video/002_34_008681798-people-walk-europe-1.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/exp_video/002_34_008681798-people-walk-europe-1.avi -------------------------------------------------------------------------------- /fun_background_simple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/fun_background_simple.m -------------------------------------------------------------------------------- /fun_channel_motion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/fun_channel_motion.m -------------------------------------------------------------------------------- /fun_channel_rgb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/fun_channel_rgb.m -------------------------------------------------------------------------------- /fun_coll.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/fun_coll.m -------------------------------------------------------------------------------- /fun_conf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/fun_conf.m -------------------------------------------------------------------------------- /fun_klt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/fun_klt.m -------------------------------------------------------------------------------- /fun_preprocess_klt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/fun_preprocess_klt.m -------------------------------------------------------------------------------- /fun_readTraks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/fun_readTraks.m -------------------------------------------------------------------------------- /fun_smooth_trk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/fun_smooth_trk.m -------------------------------------------------------------------------------- /fun_stab.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/fun_stab.m -------------------------------------------------------------------------------- /fun_video2img.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/fun_video2img.m -------------------------------------------------------------------------------- /gcatoolbox/MeanShiftCluster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/MeanShiftCluster.m -------------------------------------------------------------------------------- /gcatoolbox/clustering_affinity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/clustering_affinity.m -------------------------------------------------------------------------------- /gcatoolbox/clustering_pagerank.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/clustering_pagerank.m -------------------------------------------------------------------------------- /gcatoolbox/colorrand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/colorrand.m -------------------------------------------------------------------------------- /gcatoolbox/distmat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/distmat.m -------------------------------------------------------------------------------- /gcatoolbox/gdlfiles/gdlAffinity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/gdlfiles/gdlAffinity.m -------------------------------------------------------------------------------- /gcatoolbox/gdlfiles/gdlAffinity_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/gdlfiles/gdlAffinity_c.cpp -------------------------------------------------------------------------------- /gcatoolbox/gdlfiles/gdlAffinity_c.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/gdlfiles/gdlAffinity_c.mexw64 -------------------------------------------------------------------------------- /gcatoolbox/gdlfiles/gdlAffinity_increment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/gdlfiles/gdlAffinity_increment.m -------------------------------------------------------------------------------- /gcatoolbox/gdlfiles/gdlCompileMex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/gdlfiles/gdlCompileMex.m -------------------------------------------------------------------------------- /gcatoolbox/gdlfiles/gdlComputeAffinity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/gdlfiles/gdlComputeAffinity.cpp -------------------------------------------------------------------------------- /gcatoolbox/gdlfiles/gdlComputeDirectedAffinity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/gdlfiles/gdlComputeDirectedAffinity.cpp -------------------------------------------------------------------------------- /gcatoolbox/gdlfiles/gdlDirectedAffinity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/gdlfiles/gdlDirectedAffinity.m -------------------------------------------------------------------------------- /gcatoolbox/gdlfiles/gdlDirectedAffinity_batch_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/gdlfiles/gdlDirectedAffinity_batch_c.cpp -------------------------------------------------------------------------------- /gcatoolbox/gdlfiles/gdlDirectedAffinity_batch_c.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/gdlfiles/gdlDirectedAffinity_batch_c.mexw64 -------------------------------------------------------------------------------- /gcatoolbox/gdlfiles/gdlDirectedAffinity_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/gdlfiles/gdlDirectedAffinity_c.cpp -------------------------------------------------------------------------------- /gcatoolbox/gdlfiles/gdlDirectedAffinity_c.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/gdlfiles/gdlDirectedAffinity_c.mexw64 -------------------------------------------------------------------------------- /gcatoolbox/gdlfiles/gdlInitAffinityTable_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/gdlfiles/gdlInitAffinityTable_c.cpp -------------------------------------------------------------------------------- /gcatoolbox/gdlfiles/gdlInitAffinityTable_c.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/gdlfiles/gdlInitAffinityTable_c.mexw64 -------------------------------------------------------------------------------- /gcatoolbox/gdlfiles/gdlInitAffinityTable_knn_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/gdlfiles/gdlInitAffinityTable_knn_c.cpp -------------------------------------------------------------------------------- /gcatoolbox/gdlfiles/gdlInitAffinityTable_knn_c.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/gdlfiles/gdlInitAffinityTable_knn_c.mexw64 -------------------------------------------------------------------------------- /gcatoolbox/gdlfiles/gdlMergingKNN_c.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/gdlfiles/gdlMergingKNN_c.m -------------------------------------------------------------------------------- /gcatoolbox/gdlfiles/gdlMerging_c.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/gdlfiles/gdlMerging_c.m -------------------------------------------------------------------------------- /gcatoolbox/graphAgglomerativeClustering.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/graphAgglomerativeClustering.m -------------------------------------------------------------------------------- /gcatoolbox/gt_comparison.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/gt_comparison.m -------------------------------------------------------------------------------- /gcatoolbox/mexfiles/compileMexFiles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/mexfiles/compileMexFiles.m -------------------------------------------------------------------------------- /gcatoolbox/mexfiles/gacBuildDigraph_c.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/mexfiles/gacBuildDigraph_c.m -------------------------------------------------------------------------------- /gcatoolbox/mexfiles/gacBuildLlinks_cwarpper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/mexfiles/gacBuildLlinks_cwarpper.m -------------------------------------------------------------------------------- /gcatoolbox/mexfiles/gacFindKcCluster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/mexfiles/gacFindKcCluster.m -------------------------------------------------------------------------------- /gcatoolbox/mexfiles/gacLlinks_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/mexfiles/gacLlinks_c.cpp -------------------------------------------------------------------------------- /gcatoolbox/mexfiles/gacLlinks_c.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/mexfiles/gacLlinks_c.mexw64 -------------------------------------------------------------------------------- /gcatoolbox/mexfiles/gacMink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/mexfiles/gacMink.m -------------------------------------------------------------------------------- /gcatoolbox/mexfiles/gacOnelink_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/mexfiles/gacOnelink_c.cpp -------------------------------------------------------------------------------- /gcatoolbox/mexfiles/gacOnelink_c.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/mexfiles/gacOnelink_c.mexw64 -------------------------------------------------------------------------------- /gcatoolbox/mexfiles/gacPartialMin_knn_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/mexfiles/gacPartialMin_knn_c.cpp -------------------------------------------------------------------------------- /gcatoolbox/mexfiles/gacPartialMin_knn_c.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/mexfiles/gacPartialMin_knn_c.mexw64 -------------------------------------------------------------------------------- /gcatoolbox/mexfiles/gacPartialMin_triu_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/mexfiles/gacPartialMin_triu_c.cpp -------------------------------------------------------------------------------- /gcatoolbox/mexfiles/gacPartialMin_triu_c.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/mexfiles/gacPartialMin_triu_c.mexw64 -------------------------------------------------------------------------------- /gcatoolbox/mexfiles/gacPartial_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/mexfiles/gacPartial_sort.cpp -------------------------------------------------------------------------------- /gcatoolbox/mexfiles/gacPartial_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/mexfiles/gacPartial_sort.h -------------------------------------------------------------------------------- /gcatoolbox/mexfiles/gacPartial_sort.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/mexfiles/gacPartial_sort.mexw64 -------------------------------------------------------------------------------- /gcatoolbox/rank2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/rank2.m -------------------------------------------------------------------------------- /gcatoolbox/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/readme.txt -------------------------------------------------------------------------------- /gcatoolbox/testMeanShift.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/gcatoolbox/testMeanShift.m -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/main.m -------------------------------------------------------------------------------- /motion_norm.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/motion_norm.mat -------------------------------------------------------------------------------- /readme_channel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/readme_channel.html -------------------------------------------------------------------------------- /readme_channel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/readme_channel.md -------------------------------------------------------------------------------- /util/CFunifyClusterEachtime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/util/CFunifyClusterEachtime.m -------------------------------------------------------------------------------- /util/distmat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/util/distmat.m -------------------------------------------------------------------------------- /util/fun_cell2num.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/util/fun_cell2num.m -------------------------------------------------------------------------------- /util/fun_trk2XV.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/util/fun_trk2XV.m -------------------------------------------------------------------------------- /util/fun_trkInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/util/fun_trkInfo.m -------------------------------------------------------------------------------- /util/fun_trkInfo_temp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amandajshao/www_deep_crowd/HEAD/util/fun_trkInfo_temp.m --------------------------------------------------------------------------------