Yanfeng Liu
Yanfeng Liu

Reputation: 629

If I resize images using Tensorflow Object Detection API, are the bboxes automatically resized too?

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

Answers (1)

Jonathan Huang
Jonathan Huang

Reputation: 1558

Yes, the boxes will be resized to be compatible with the images as well!

Upvotes: 2

Related Questions