How is TAO Classification adding padding when preprocessing images?

Please provide the following information when requesting support.

• Hardware: GTX 1080ti
• Network Type: Classification (TF1)
• TLT Version: nvcr.io/nvidia/tao/tao-toolkit-tf:v3.22.05-tf1.15.4-py3 (Docker image)
• Training spec file:
config.txt (1.3 KB)

Hello,

I noted that nvinfer maintains aspect ratio of images but either adds zero padding or symmetric padding. What kind of padding does TAO add?

And according to this post, when training a classification model, TAO will resize the images while keeping aspect ratio. Why Nvidia would recommend not setting maintain-aspect-ratio=1 in nvinfer config when using a TAO classification model with deep stream?

There is no update from you for a period, assuming this is not an issue anymore.
Hence we are closing this topic. If need further support, please open a new one.
Thanks

When run tao classification inference command , if enable_center_crop is false and enable_random_crop is false, the images will be loaded using Keras( load_img from keras_preprocessing/image/utils.py). Resizing does not keep aspect ratio.
If enable_ceter_crop is true or enable_random_crop is true, the resizing will keep aspect ratio. More info can be found in "enable_center_crop" in eval_config for Image Classification and how to pre-process image to also enable center crop for inference in Triton? - #5 by Morganh .
In deepstream inference, if TAO training setting is similar to above case 1, it is not needed to set maintain-aspect-ratio=1. If TAO training setting is similar to case2, it is suggested to set maintain-aspect-ratio=1.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.