A simple python module to generate anchor (aka default/prior) boxes for object detection tasks
WIP
A simple python module to generate anchor (aka default/prior) boxes for object detection tasks. Calculated anchor boxes are returned as ndarrays in pascal_voc
format by default.
Installation
Usage
To calculate the anchor boxes for a single feature size and aspect ratio, given the image size:
from pybx import anchor
image_sz = (300, 300, 3)
feature_sz = (10, 10)
asp_ratio = 1/2.
anchor.bx(image_sz, feature_sz, asp_ratio)
To