-
Notifications
You must be signed in to change notification settings - Fork 7.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What is the input image resolution of different models in the Detectron2 Model Zoo? #3461
Comments
This comment has been minimized.
This comment has been minimized.
Unless changes from the default config file (detectron2/config/defaults.py) are noted, the default test pipeline resizes the input images with the parameters below.
Please refer to the implementation of ResizeShortestEdge in detectron2/data/transforms/augmentation_impl.py to see how the images get transformed with the parameters. |
You did not understand me. Different pre-trained models have different input sizes because already have a architecture defined. Image resolution must match the input size of the pre-trained. My question is: What is the input image resolution of different models in the Detectron2 Model Zoo? |
No. You can use any image resolution that you think is reasonable for any models in detectron2 model zoo. The default resolution that we use is answered above by #3461 (comment) |
hello |
What is the input image resolution (image size) of different models in the Detectron2 Model Zoo? For example, when using an image with a 4K resolution as input, to what size does it transform, for example, in the R50-FPN model or another model? Where can I find this information?
The text was updated successfully, but these errors were encountered: