Skip to content

sbetageri/MaskRCNN

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MaskRCNN + Faster RCNN

(Personal Notes)

Mask RCNN implementation in PyTorch

Faster RCNN works in two phases:

  1. Region proposals
  2. Classifying regions

Region Proposals

A region is an area of the original picture which might contain an object. Also known as Region Of Interest (RoI)

These are the most important aspects of an RCNN. They are also a source of bottlenecks.

RCNN used a large number of region proposals by running it through a variety of category independent region proposal algorithms. These regions are then passed through a CNN.

Fast RCNN is an improvment over RCNN. Instead of running the region proposal algorithms over the underlying image, the algorithms are run over a feature map. This feature map is obtained by passing the image through the Convlutional layers of any CNN. Fast RCNN is computationally less expensive when compared to RCNN.

Dataset

Coco

Paper

RCNN
Fast RCNN
Mask RCNN

About

Mask RCNN implementation in PyTorch. Currently building up to Faster RCNN.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published