I just wonder the role of image size and what it does in test.py, and detect.py.
I understand that input size affects the model's performance in terms of both speed and accuracy so I see it's important when we train a model. But what about in test and detect situation?
Also, I added (print("img.shape: ", img.shape) in line 110 of test.py to check the height and width of the images while running the test.py script and they weren't 640 640 even though the input size parameter was 640.
Where can I check if the size of the input images are actually 640 640?
I just wonder the role of image size and what it does in test.py, and detect.py. I understand that input size affects the model's performance in terms of both speed and accuracy so I see it's important when we train a model. But what about in test and detect situation? Also, I added (print("img.shape: ", img.shape) in line 110 of test.py to check the height and width of the images while running the test.py script and they weren't 640 640 even though the input size parameter was 640. Where can I check if the size of the input images are actually 640 640?