yuto3o / yolox

More Than YOLO(v3, v4, v3-tiny, v4-tiny)
150 stars 46 forks source link

Handling non-square images #18

Closed RatkoFri closed 3 years ago

RatkoFri commented 3 years ago

Greetings,

I am using YOLOv4_tiny to detect objects on images in the shape 2704x1520. How to configure yaml cfg files?

When I am using the images in the shape 2704x1520, the Keras throws a dimension mismatch error.

Ratko

yuto3o commented 3 years ago

do nothing, or keep the shape of images could be divisible by all strides in your cfg file.

RatkoFri commented 3 years ago

Thanks.