I am using Detectron2 (Mask-RCNN Model) and passed by:
_C.INPUT.MIN_SIZE_TEST = (800, 832, 864, 896)
_C.INPUT.MAX_SIZE_TEST = 1333
How is it possible to have different input image sizes? How are they entered into the model and Shouldn't the model have a consistent input size?
I tried to check the documentation but didnt find a clear answer.