├── .gitignore ├── LICENSE ├── README.md ├── assemble_cityscapes.py ├── batch_iter.py ├── cityscapes.py ├── cityscapes_scripts ├── evaluation │ ├── addToConfusionMatrix.pyx │ ├── addToConfusionMatrix_impl.c │ ├── evalInstanceLevelSemanticLabeling.py │ ├── evalPixelLevelSemanticLabeling.py │ ├── instance.py │ ├── instances2dict.py │ └── setup.py ├── helpers │ ├── annotation.py │ ├── csHelpers.py │ └── labels.py ├── preparation │ ├── createTrainIdInstanceImgs.py │ ├── createTrainIdLabelImgs.py │ ├── json2instanceImg.py │ └── json2labelImg.py └── viewer │ ├── cityscapesViewer.py │ └── icons │ ├── back.png │ ├── disp.png │ ├── exit.png │ ├── filepath.png │ ├── help19.png │ ├── icons_attribution.txt │ ├── minus.png │ ├── next.png │ ├── open.png │ ├── play.png │ ├── plus.png │ ├── shuffle.png │ └── zoom.png ├── concurrent_batch_iter.py ├── get_dataset.py ├── labels.py ├── logger.py ├── orientation.py ├── seg_dataset.py ├── seg_dataset_assembler.py └── sep_labels.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/README.md -------------------------------------------------------------------------------- /assemble_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/assemble_cityscapes.py -------------------------------------------------------------------------------- /batch_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/batch_iter.py -------------------------------------------------------------------------------- /cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes.py -------------------------------------------------------------------------------- /cityscapes_scripts/evaluation/addToConfusionMatrix.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/evaluation/addToConfusionMatrix.pyx -------------------------------------------------------------------------------- /cityscapes_scripts/evaluation/addToConfusionMatrix_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/evaluation/addToConfusionMatrix_impl.c -------------------------------------------------------------------------------- /cityscapes_scripts/evaluation/evalInstanceLevelSemanticLabeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/evaluation/evalInstanceLevelSemanticLabeling.py -------------------------------------------------------------------------------- /cityscapes_scripts/evaluation/evalPixelLevelSemanticLabeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/evaluation/evalPixelLevelSemanticLabeling.py -------------------------------------------------------------------------------- /cityscapes_scripts/evaluation/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/evaluation/instance.py -------------------------------------------------------------------------------- /cityscapes_scripts/evaluation/instances2dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/evaluation/instances2dict.py -------------------------------------------------------------------------------- /cityscapes_scripts/evaluation/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/evaluation/setup.py -------------------------------------------------------------------------------- /cityscapes_scripts/helpers/annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/helpers/annotation.py -------------------------------------------------------------------------------- /cityscapes_scripts/helpers/csHelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/helpers/csHelpers.py -------------------------------------------------------------------------------- /cityscapes_scripts/helpers/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/helpers/labels.py -------------------------------------------------------------------------------- /cityscapes_scripts/preparation/createTrainIdInstanceImgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/preparation/createTrainIdInstanceImgs.py -------------------------------------------------------------------------------- /cityscapes_scripts/preparation/createTrainIdLabelImgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/preparation/createTrainIdLabelImgs.py -------------------------------------------------------------------------------- /cityscapes_scripts/preparation/json2instanceImg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/preparation/json2instanceImg.py -------------------------------------------------------------------------------- /cityscapes_scripts/preparation/json2labelImg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/preparation/json2labelImg.py -------------------------------------------------------------------------------- /cityscapes_scripts/viewer/cityscapesViewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/viewer/cityscapesViewer.py -------------------------------------------------------------------------------- /cityscapes_scripts/viewer/icons/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/viewer/icons/back.png -------------------------------------------------------------------------------- /cityscapes_scripts/viewer/icons/disp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/viewer/icons/disp.png -------------------------------------------------------------------------------- /cityscapes_scripts/viewer/icons/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/viewer/icons/exit.png -------------------------------------------------------------------------------- /cityscapes_scripts/viewer/icons/filepath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/viewer/icons/filepath.png -------------------------------------------------------------------------------- /cityscapes_scripts/viewer/icons/help19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/viewer/icons/help19.png -------------------------------------------------------------------------------- /cityscapes_scripts/viewer/icons/icons_attribution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/viewer/icons/icons_attribution.txt -------------------------------------------------------------------------------- /cityscapes_scripts/viewer/icons/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/viewer/icons/minus.png -------------------------------------------------------------------------------- /cityscapes_scripts/viewer/icons/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/viewer/icons/next.png -------------------------------------------------------------------------------- /cityscapes_scripts/viewer/icons/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/viewer/icons/open.png -------------------------------------------------------------------------------- /cityscapes_scripts/viewer/icons/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/viewer/icons/play.png -------------------------------------------------------------------------------- /cityscapes_scripts/viewer/icons/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/viewer/icons/plus.png -------------------------------------------------------------------------------- /cityscapes_scripts/viewer/icons/shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/viewer/icons/shuffle.png -------------------------------------------------------------------------------- /cityscapes_scripts/viewer/icons/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/cityscapes_scripts/viewer/icons/zoom.png -------------------------------------------------------------------------------- /concurrent_batch_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/concurrent_batch_iter.py -------------------------------------------------------------------------------- /get_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/get_dataset.py -------------------------------------------------------------------------------- /labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/labels.py -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/logger.py -------------------------------------------------------------------------------- /orientation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/orientation.py -------------------------------------------------------------------------------- /seg_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/seg_dataset.py -------------------------------------------------------------------------------- /seg_dataset_assembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/seg_dataset_assembler.py -------------------------------------------------------------------------------- /sep_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renmengye/cityscapes-api/HEAD/sep_labels.py --------------------------------------------------------------------------------