rafaelpadilla / darknet

Useful functionalities added on the original darknet public repository.
Other
36 stars 17 forks source link

Train with large image size like 1600*1200 with yolo #13

Closed Ibmaria closed 5 years ago

Ibmaria commented 5 years ago

Hello @rafaelpadilla I've read some other closed issues but still I don't understand how training with large image size. For instance my original size is 1600*1200. should I resize my original image before training? or it will be resized automatically.Thanks in advance

rafaelpadilla commented 5 years ago

No you don't need to resize yourimages. Yolo v2 resizes the input image to different resolutions before passing to the CNNs.

Please, refer to the original paper for more details: Paper Yolo9000

Regards

Ibmaria commented 5 years ago

Thanks @rafaelpadilla