I am using a pix2pix model for a project where for training purpose i am using image size of 256x256
but now after my model has been trained, i have a test image which has size of 1024x1024 and resizing it to 256x256 will decrease its quality. is there any method to run my model on this 1024x1024 image.
I had read somewhere that we can stride a window of 256x256 over the 1024x1024 image and then stitch the output images for each images together. but then I think there will be no smoothness in the border of this stitched output images. Any suggestions on how to do it?