Skip to content

us4544/segment.ai

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Instance Segmentation using Mask RCNN

Image segmentation creates a pixel-wise mask for each object in the image. This technique gives us a far more granular understanding of the object(s) in the image. This can be done through various techniques like:

  • Threshold Based Segmentation
  • Edge Based Segmentation
  • Region-Based Segmentation
  • Clustering Based Segmentation
  • Artificial Neural Network Based Segmentation

image

Mask RCNN

Mask R-CNN extends Faster R-CNN by adding a branch for predicting an object mask in parallel with the existing branch for bounding box recognition. Mask R-CNN is simple to train and adds only a small overhead to Faster R-CNN, running at 5 fps. Mask R-CNN is easy to generalize to other tasks, e.g., allowing us to estimate human poses in the same framework.

Semantic segmentation associates every pixel of an image with a class label such as a person, flower, car and so on. It treats multiple objects of the same class as a single entity.
In contrast, instance segmentation treats multiple objects of the same class as distinct individual instances.
For example, in the image shown below, Semantic Segmentation identifies all sheep as the same entity and gives them the same mask. However, Instance Segmentation treats each of the three sheep as different entities and gives them different colored masks.

Network Architecture

  • A convolutional backbone architecture used for feature extraction over an entire image
  • A network head for bounding-box recognition (classification and regression) and mask prediction that is applied separately to each RoI.

image

Results from original Mask RCNN Implementation by Facebook AI Research

image

Demo

Installation and Quick Start

  • Cloning the Repository:

      git clone https://github.com/us4544/segment.ai
    
  • Entering the directory:

      cd segment.ai
    
  • Setting up the Python Environment with dependencies:

      pip install -r requirements.txt
    
  • Running the file:

      pip install virtualenv
      python -m venv env
      source env/bin/activate
      pip install -r requirements.txt
      streamlit run main.py
    

Contributors

About

Project repository for Course 18CSE484T

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages