What resolution does CodeProject.AI pass from Blue Iris to YOLOv5? #289
-
Hi all, I'm working on custom training with YOLO v5 6.2 and want to be sure the images in my training set are the optimal resolution. I've seen the settings in Blue Iris regarding AI, but I haven't seen any reference to the actual resolution that is passed to the model during inference. As a result, I don't know if the frames are the same as in BI or if they're resized somewhere along the way before actual inference. Any guidance on this, or pointers to documentation where I can learn, would be really appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
The all the YOLO v5 are trained with image at 640x640 resolution. If you send an image with greater resolution the image gets resized to 640x640 before actual inference. The below link has details on training. You can increase the resolution when training using the img parameter |
Beta Was this translation helpful? Give feedback.
-
YOLOv5 (v6.2) automatically resizes images for inference, typically to 640x640 (default). If you're using Blue Iris (BI), check resizing frame first you can check through this process
|
Beta Was this translation helpful? Give feedback.
The all the YOLO v5 are trained with image at 640x640 resolution. If you send an image with greater resolution the image gets resized to 640x640 before actual inference. The b…