├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── README.md ├── alley_1 ├── frame_0001.png ├── frame_0002.png ├── frame_0003.png ├── frame_0004.png ├── frame_0005.png ├── frame_0006.png ├── frame_0007.png ├── frame_0008.png ├── frame_0009.png └── frame_0010.png ├── alley_1_flow ├── frame_0001.flo.txt ├── frame_0002.flo.txt ├── frame_0003.flo.txt ├── frame_0004.flo.txt ├── frame_0005.flo.txt ├── frame_0006.flo.txt ├── frame_0007.flo.txt ├── frame_0008.flo.txt ├── frame_0009.flo.txt └── frame_0010.flo.txt ├── alley_1_gt ├── frame_0001.png ├── frame_0002.png ├── frame_0003.png ├── frame_0004.png ├── frame_0005.png ├── frame_0006.png ├── frame_0007.png ├── frame_0008.png ├── frame_0009.png └── frame_0010.png ├── lib_segment ├── CMakeLists.txt ├── csv_iterator.h ├── evaluation.cpp ├── evaluation.h ├── graph_segmentation.cpp ├── graph_segmentation.h ├── io.cpp ├── io.h ├── io_util.cpp ├── io_util.h └── video_graph.h ├── optical_flow_cli ├── CMakeLists.txt └── main.cpp ├── results ├── alley_1-1-1.png ├── alley_1-1-2.png ├── alley_1-1.png ├── alley_1-2-1.png ├── alley_1-2-2.png ├── alley_1-2.png ├── alley_1-3-1.png ├── alley_1-3-2.png ├── alley_1-3.png ├── alley_1-level-2.png ├── alley_1-level.-0.png ├── alley_1.png ├── alley_1_full.png ├── alley_1_full_spaced.png └── alley_1_full_spaced_690.png └── segment_cli ├── CMakeLists.txt └── main.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | /nbproject/ 3 | *~ 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/README.md -------------------------------------------------------------------------------- /alley_1/frame_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1/frame_0001.png -------------------------------------------------------------------------------- /alley_1/frame_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1/frame_0002.png -------------------------------------------------------------------------------- /alley_1/frame_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1/frame_0003.png -------------------------------------------------------------------------------- /alley_1/frame_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1/frame_0004.png -------------------------------------------------------------------------------- /alley_1/frame_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1/frame_0005.png -------------------------------------------------------------------------------- /alley_1/frame_0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1/frame_0006.png -------------------------------------------------------------------------------- /alley_1/frame_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1/frame_0007.png -------------------------------------------------------------------------------- /alley_1/frame_0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1/frame_0008.png -------------------------------------------------------------------------------- /alley_1/frame_0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1/frame_0009.png -------------------------------------------------------------------------------- /alley_1/frame_0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1/frame_0010.png -------------------------------------------------------------------------------- /alley_1_flow/frame_0001.flo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1_flow/frame_0001.flo.txt -------------------------------------------------------------------------------- /alley_1_flow/frame_0002.flo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1_flow/frame_0002.flo.txt -------------------------------------------------------------------------------- /alley_1_flow/frame_0003.flo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1_flow/frame_0003.flo.txt -------------------------------------------------------------------------------- /alley_1_flow/frame_0004.flo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1_flow/frame_0004.flo.txt -------------------------------------------------------------------------------- /alley_1_flow/frame_0005.flo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1_flow/frame_0005.flo.txt -------------------------------------------------------------------------------- /alley_1_flow/frame_0006.flo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1_flow/frame_0006.flo.txt -------------------------------------------------------------------------------- /alley_1_flow/frame_0007.flo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1_flow/frame_0007.flo.txt -------------------------------------------------------------------------------- /alley_1_flow/frame_0008.flo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1_flow/frame_0008.flo.txt -------------------------------------------------------------------------------- /alley_1_flow/frame_0009.flo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1_flow/frame_0009.flo.txt -------------------------------------------------------------------------------- /alley_1_flow/frame_0010.flo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1_flow/frame_0010.flo.txt -------------------------------------------------------------------------------- /alley_1_gt/frame_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1_gt/frame_0001.png -------------------------------------------------------------------------------- /alley_1_gt/frame_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1_gt/frame_0002.png -------------------------------------------------------------------------------- /alley_1_gt/frame_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1_gt/frame_0003.png -------------------------------------------------------------------------------- /alley_1_gt/frame_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1_gt/frame_0004.png -------------------------------------------------------------------------------- /alley_1_gt/frame_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1_gt/frame_0005.png -------------------------------------------------------------------------------- /alley_1_gt/frame_0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1_gt/frame_0006.png -------------------------------------------------------------------------------- /alley_1_gt/frame_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1_gt/frame_0007.png -------------------------------------------------------------------------------- /alley_1_gt/frame_0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1_gt/frame_0008.png -------------------------------------------------------------------------------- /alley_1_gt/frame_0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1_gt/frame_0009.png -------------------------------------------------------------------------------- /alley_1_gt/frame_0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/alley_1_gt/frame_0010.png -------------------------------------------------------------------------------- /lib_segment/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/lib_segment/CMakeLists.txt -------------------------------------------------------------------------------- /lib_segment/csv_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/lib_segment/csv_iterator.h -------------------------------------------------------------------------------- /lib_segment/evaluation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/lib_segment/evaluation.cpp -------------------------------------------------------------------------------- /lib_segment/evaluation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/lib_segment/evaluation.h -------------------------------------------------------------------------------- /lib_segment/graph_segmentation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/lib_segment/graph_segmentation.cpp -------------------------------------------------------------------------------- /lib_segment/graph_segmentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/lib_segment/graph_segmentation.h -------------------------------------------------------------------------------- /lib_segment/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/lib_segment/io.cpp -------------------------------------------------------------------------------- /lib_segment/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/lib_segment/io.h -------------------------------------------------------------------------------- /lib_segment/io_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/lib_segment/io_util.cpp -------------------------------------------------------------------------------- /lib_segment/io_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/lib_segment/io_util.h -------------------------------------------------------------------------------- /lib_segment/video_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/lib_segment/video_graph.h -------------------------------------------------------------------------------- /optical_flow_cli/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/optical_flow_cli/CMakeLists.txt -------------------------------------------------------------------------------- /optical_flow_cli/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/optical_flow_cli/main.cpp -------------------------------------------------------------------------------- /results/alley_1-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/results/alley_1-1-1.png -------------------------------------------------------------------------------- /results/alley_1-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/results/alley_1-1-2.png -------------------------------------------------------------------------------- /results/alley_1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/results/alley_1-1.png -------------------------------------------------------------------------------- /results/alley_1-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/results/alley_1-2-1.png -------------------------------------------------------------------------------- /results/alley_1-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/results/alley_1-2-2.png -------------------------------------------------------------------------------- /results/alley_1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/results/alley_1-2.png -------------------------------------------------------------------------------- /results/alley_1-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/results/alley_1-3-1.png -------------------------------------------------------------------------------- /results/alley_1-3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/results/alley_1-3-2.png -------------------------------------------------------------------------------- /results/alley_1-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/results/alley_1-3.png -------------------------------------------------------------------------------- /results/alley_1-level-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/results/alley_1-level-2.png -------------------------------------------------------------------------------- /results/alley_1-level.-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/results/alley_1-level.-0.png -------------------------------------------------------------------------------- /results/alley_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/results/alley_1.png -------------------------------------------------------------------------------- /results/alley_1_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/results/alley_1_full.png -------------------------------------------------------------------------------- /results/alley_1_full_spaced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/results/alley_1_full_spaced.png -------------------------------------------------------------------------------- /results/alley_1_full_spaced_690.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/results/alley_1_full_spaced_690.png -------------------------------------------------------------------------------- /segment_cli/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/segment_cli/CMakeLists.txt -------------------------------------------------------------------------------- /segment_cli/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidstutz/hierarchical-graph-based-video-segmentation/HEAD/segment_cli/main.cpp --------------------------------------------------------------------------------