Reputation: 629
Tensorflow's Object Detection API has an option in the .config
file to add an keep_aspect_ratio_resizer
. If I resize my training data using this, will the corresponding bounding boxes be resized as well? If they don't match up then the network is seeing incorrect examples.
Upvotes: 2
Views: 573
Reputation: 1558
Yes, the boxes will be resized to be compatible with the images as well!
Upvotes: 2