You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the 'train.py' code, the input color images are resized and transposed by (1,2,0).
Why did you transposed the original input images when you save the "data" including original images if opt.mode=='test' and opt.save_prediction==True. ?
The text was updated successfully, but these errors were encountered:
Hi @nicesonnday , if you asking about this line, the transpose is just for converting the [channel, height, width] format to [height, width, channel] format.
In the 'train.py' code, the input color images are resized and transposed by (1,2,0).
Why did you transposed the original input images when you save the "data" including original images if opt.mode=='test' and opt.save_prediction==True. ?
The text was updated successfully, but these errors were encountered: