I have a data set of bacteria images taken from under a microscope and recorded using a high resolution camera. The images are of resolution 800x600 and in another data set (taken from a different microscope) the resolution is about 5312x2988. Models like VGG16 and InceptionV3 are trained on an image resolution of 224x224.
How can I properly input the image data into the network. Do I down sample the images to 224x224? I think that that it would result in loss of too much quality which is need for prediction. Is there any other better method?