├── .gitignore ├── __init__.py ├── bow.py ├── compare_results.py ├── hierarchical_segmentation.py ├── kraehenbuehl_potentials.py ├── load_eval.py ├── mnist_svm_experiment.py ├── msrc ├── __init__.py ├── example_void_crf.py ├── hierarchical_crf.py ├── hierarchical_helpers.py ├── ignore_void_crf.py ├── msrc_crf.py ├── msrc_helpers.py ├── msrc_svm.py └── parts.py ├── nyu ├── __init__.py ├── nyu_baselines.py ├── nyu_crf.py ├── nyu_helpers.py └── nyu_hierarchical.py ├── pascal ├── __init__.py ├── hierarchical_crf.py ├── pascal_baselines.py ├── pascal_bow.py ├── pascal_colors.txt ├── pascal_crf.py ├── pascal_helpers.py ├── tests_helpers.py └── visualize_segment_sps.py ├── plotting.py ├── tests ├── __init__.py └── test_ignore_void_crf.py ├── toy_experiments ├── directional_bars.py ├── directional_bars_joint.py ├── harder_crosses.py ├── simple_crosses.py └── square_with_hole.py ├── utils.py ├── visualize_edge_features.py └── visualize_new_gt.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/bow.py -------------------------------------------------------------------------------- /compare_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/compare_results.py -------------------------------------------------------------------------------- /hierarchical_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/hierarchical_segmentation.py -------------------------------------------------------------------------------- /kraehenbuehl_potentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/kraehenbuehl_potentials.py -------------------------------------------------------------------------------- /load_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/load_eval.py -------------------------------------------------------------------------------- /mnist_svm_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/mnist_svm_experiment.py -------------------------------------------------------------------------------- /msrc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /msrc/example_void_crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/msrc/example_void_crf.py -------------------------------------------------------------------------------- /msrc/hierarchical_crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/msrc/hierarchical_crf.py -------------------------------------------------------------------------------- /msrc/hierarchical_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/msrc/hierarchical_helpers.py -------------------------------------------------------------------------------- /msrc/ignore_void_crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/msrc/ignore_void_crf.py -------------------------------------------------------------------------------- /msrc/msrc_crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/msrc/msrc_crf.py -------------------------------------------------------------------------------- /msrc/msrc_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/msrc/msrc_helpers.py -------------------------------------------------------------------------------- /msrc/msrc_svm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/msrc/msrc_svm.py -------------------------------------------------------------------------------- /msrc/parts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/msrc/parts.py -------------------------------------------------------------------------------- /nyu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nyu/nyu_baselines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/nyu/nyu_baselines.py -------------------------------------------------------------------------------- /nyu/nyu_crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/nyu/nyu_crf.py -------------------------------------------------------------------------------- /nyu/nyu_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/nyu/nyu_helpers.py -------------------------------------------------------------------------------- /nyu/nyu_hierarchical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/nyu/nyu_hierarchical.py -------------------------------------------------------------------------------- /pascal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pascal/hierarchical_crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/pascal/hierarchical_crf.py -------------------------------------------------------------------------------- /pascal/pascal_baselines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/pascal/pascal_baselines.py -------------------------------------------------------------------------------- /pascal/pascal_bow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/pascal/pascal_bow.py -------------------------------------------------------------------------------- /pascal/pascal_colors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/pascal/pascal_colors.txt -------------------------------------------------------------------------------- /pascal/pascal_crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/pascal/pascal_crf.py -------------------------------------------------------------------------------- /pascal/pascal_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/pascal/pascal_helpers.py -------------------------------------------------------------------------------- /pascal/tests_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/pascal/tests_helpers.py -------------------------------------------------------------------------------- /pascal/visualize_segment_sps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/pascal/visualize_segment_sps.py -------------------------------------------------------------------------------- /plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/plotting.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_ignore_void_crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/tests/test_ignore_void_crf.py -------------------------------------------------------------------------------- /toy_experiments/directional_bars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/toy_experiments/directional_bars.py -------------------------------------------------------------------------------- /toy_experiments/directional_bars_joint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/toy_experiments/directional_bars_joint.py -------------------------------------------------------------------------------- /toy_experiments/harder_crosses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/toy_experiments/harder_crosses.py -------------------------------------------------------------------------------- /toy_experiments/simple_crosses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/toy_experiments/simple_crosses.py -------------------------------------------------------------------------------- /toy_experiments/square_with_hole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/toy_experiments/square_with_hole.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/utils.py -------------------------------------------------------------------------------- /visualize_edge_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/visualize_edge_features.py -------------------------------------------------------------------------------- /visualize_new_gt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amueller/segmentation/HEAD/visualize_new_gt.py --------------------------------------------------------------------------------