This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
Description: Generate bounding boxes of different aspect ratio and scales given a ground truth box and IoU Threshold(NUMPY Version) | |
Reference Paper: Generating Positive Bounding Boxes for Balanced Training of Object Detectors - September 2019. | |
Link: https://arxiv.org/pdf/1909.09777.pdf | |
Official Github Repository Code: https://github.com/kemaloksuz/BoundingBoxGenerator | |
NOTE: THIS CODE IS TAKEN FROM OFFICIAL REPOSITORY MENTIONED BY THE AUTHORS IN PAPER. | |
CHANGES MADE: TORCH -> NUMPY CONVERSION OF THE SNIPPET |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
Name: Shreejal Trivedi | |
Description: Generation Script of RegNetX and RegNetY models | |
References: Designing Network Design Spaces from Facebook AI March'2020 | |
''' | |
#Importing Libraries |