Skip to content

Kanghee-Lee/Faster-RCNN_TF-RPN-

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

Faster-RCNN_TF-RPN-

Tensorflow re-implementation of RPN in Faster R-CNN: Towards Real-Time ObjectDetection with Region Proposal Networks.

Introduction

In Fast R-CNN, region proposal is proceeded with selective search algorithm which is computed outside the CNN module.

So generating RoI(region of interest) is the bottleneck.

By sharing conv feature map in RPN(region proposal network), we can generate RoI from conv feature map.

It is computed by gpu, while generation of RoI in Fast R-CNN is computed by cpu.

Architecture

Architecture

Adapted until pool-3 layer of VGG as backbone, (32, 64, 128) for scale and (0.5, 1.0, 2.0) for ratio.

Both scale and ratio is correspondent to the scale and ration of the anchor box projected onto the original image, not the conv feature map.

About

Region proposal network of Faster-RCNN with Tensorflow

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published