ggcnn icon indicating copy to clipboard operation
ggcnn copied to clipboard

can the ggcnn deal with the image of different size

Open CodeKingWang opened this issue 2 years ago • 2 comments

Can this network handle 1280*720 pictures

CodeKingWang avatar Jan 07 '23 12:01 CodeKingWang

Because it is a CNN, there is no technical reason why it shouldn't work. The network was trained on 300*300 images, so might not work properly out of the box, in which case you could re-train it for your desired size. Hope that helps.

dougsm avatar Jan 09 '23 15:01 dougsm

Can this network handle 1280*720 pictures

An easy way is to crop your images and make length = width, such as from 1280* 720 to 720* 720, then resize it to 300* 300 to fit the input size of GG-CNN.

Hongbo-Z avatar Mar 23 '23 12:03 Hongbo-Z