├── .gitignore ├── LICENSE ├── README.md ├── content ├── datasets │ ├── ade20k.md │ ├── cityscapes_semantic.md │ ├── coco_detection.md │ ├── dataset_catalog.md │ ├── pascal_context.md │ └── pascal_voc_2012_segmentation.md ├── depth_estimation.md ├── image_classification.md ├── image_quality_assessment.md ├── object_detection.md ├── pose_estimation.md └── semantic_segmentation.md ├── dataset_template.md ├── incoming_papers.md ├── problem_template.md └── supplementary.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lextal/SotA-CV/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lextal/SotA-CV/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lextal/SotA-CV/HEAD/README.md -------------------------------------------------------------------------------- /content/datasets/ade20k.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lextal/SotA-CV/HEAD/content/datasets/ade20k.md -------------------------------------------------------------------------------- /content/datasets/cityscapes_semantic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lextal/SotA-CV/HEAD/content/datasets/cityscapes_semantic.md -------------------------------------------------------------------------------- /content/datasets/coco_detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lextal/SotA-CV/HEAD/content/datasets/coco_detection.md -------------------------------------------------------------------------------- /content/datasets/dataset_catalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lextal/SotA-CV/HEAD/content/datasets/dataset_catalog.md -------------------------------------------------------------------------------- /content/datasets/pascal_context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lextal/SotA-CV/HEAD/content/datasets/pascal_context.md -------------------------------------------------------------------------------- /content/datasets/pascal_voc_2012_segmentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lextal/SotA-CV/HEAD/content/datasets/pascal_voc_2012_segmentation.md -------------------------------------------------------------------------------- /content/depth_estimation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lextal/SotA-CV/HEAD/content/depth_estimation.md -------------------------------------------------------------------------------- /content/image_classification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lextal/SotA-CV/HEAD/content/image_classification.md -------------------------------------------------------------------------------- /content/image_quality_assessment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lextal/SotA-CV/HEAD/content/image_quality_assessment.md -------------------------------------------------------------------------------- /content/object_detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lextal/SotA-CV/HEAD/content/object_detection.md -------------------------------------------------------------------------------- /content/pose_estimation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lextal/SotA-CV/HEAD/content/pose_estimation.md -------------------------------------------------------------------------------- /content/semantic_segmentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lextal/SotA-CV/HEAD/content/semantic_segmentation.md -------------------------------------------------------------------------------- /dataset_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lextal/SotA-CV/HEAD/dataset_template.md -------------------------------------------------------------------------------- /incoming_papers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lextal/SotA-CV/HEAD/incoming_papers.md -------------------------------------------------------------------------------- /problem_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lextal/SotA-CV/HEAD/problem_template.md -------------------------------------------------------------------------------- /supplementary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lextal/SotA-CV/HEAD/supplementary.md --------------------------------------------------------------------------------