You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
COCO_2018-Stuff-Segmentation-Challenge What is COCO? COCO is large-scale object detection, segmentation, and captioning dataset. The COCO Stuff Segmentation Task is designed to push the state of the art in semantic segmentation of stuff classes. Whereas the object detection task addresses thing classes (person, car, elephant), this task focuses …
COCO_2018-Stuff-Segmentation-Challenge What is COCO? COCO is large-scale object detection, segmentation, and captioning dataset. The COCO Stuff Segmentation Task is designed to push the state of the art in semantic segmentation of stuff classes. Whereas the object detection task addresses thing classes (person, car, elephant), this task focuses on stuff classes (grass, wall, sky). For full details of the stuff segmentation task please see the stuff evaluation page. Note: the newly introduced panoptic segmentation task addresses recognition of both things and stuff classes simultaneously. This project implicates schematic segmentation, where raw RGB images are processed into the model and pixel masked images are given out as an output.
Internship project in Bennett University under Leadinginadi.ai
Getting Started
Problem Statement :-
To perform Semantic Segmentation of Stuff classes.The COCO Stuff Segmentation Task is designed to push the state of the art in semantic segmentation of stuff classes.
Prerequisites and installing
you can run script.sh in the scripts folder to install all prequisites.
selective prequisites are given below.
pip install tensorflow-gpu
pip install tqdm
pip install keras
pip install keras-segmentation
Dataset format
You need to make two folders
Images Folder - For all the training images
Annotations Folder - For the corresponding ground truth segmentation images
The filenames of the annotation images should be same as the filenames of the RGB images.
COCO_2018-Stuff-Segmentation-Challenge What is COCO? COCO is large-scale object detection, segmentation, and captioning dataset. The COCO Stuff Segmentation Task is designed to push the state of the art in semantic segmentation of stuff classes. Whereas the object detection task addresses thing classes (person, car, elephant), this task focuses …