1

When using Tensorflow 2 object detection api when do I normalize images of different sizes. Do I preprocess all the images to be same size then annotate with object bounding box? Or do the models somehow do the resizing internally and adjusts the predicted bounding box? The pre-trained models seems to have a preset sizes.

https://github.com/tensorflow/models/tree/master/research/object_detection/models https://github.com/tensorflow/models/tree/master/research/object_detection https://tensorflow-object-detection-api-tutorial.readthedocs.io/en/latest/index.html

user3328923
  • 143
  • 2

1 Answers1

1

according to my understanding, it is not required to normalize or all the images do not need to be resized by yourself. API will do the job, all you need to do annotation.

  • Your answer could be improved with additional supporting information. Please [edit] to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Jun 28 '22 at 16:16