YOLO_ResNet
YOLO_ResNet copied to clipboard
not working for other images
I have used the weights in the google drive. It is not working for other images apart from those given in the github. Could you let me if I need to change anyother parameters.
In predict.py, add the dims of the image and set the dims parameter to dims.
dims = (img.shape[1], img.shape[0])
bboxes = utils.get_boxes(pred[0], cutoff=0.2, dims=dims)