KlemenSkrlj
Thank you so much for this feedback, we will adjust our data collection setup to taken into consideration collecting .passthrough images of real world deployments. We are in process to set this up with our client.
On an aside how do I correctly draw yolo detection bounding box results on the video
frames collected from camRgb when setPreviewKeepAspectRatio is set to True? Previously I had setPreviewKeepAspectRatio to false and was able to drew the bounding box on the frame from .video without an issue using this code,
def frameNorm(frame, bbox):
normVals = np.full(len(bbox), frame.shape[0])
normVals[::2] = frame.shape[1]
return (np.clip(np.array(bbox), 0, 1) * normVals).astype(int)
However this doesn't translate when setPreviewKeepAspectRatio is set to True,
For an example this how the bounding box looks

Thank you for your help, I look forward to hearing from you.
Have a great day!