Also catch ValueError from framereader

old-commit-hash: 794cfcf043
This commit is contained in:
Willem Melching
2020-04-28 15:13:45 -07:00
parent 12101b1394
commit 54cf07960f
+1 -1
View File
@@ -48,7 +48,7 @@ def replay(route, segment):
img = fr.get(frame_idx[msg.frame.frameId], pix_fmt="rgb24")
img = img[0][:, :, ::-1] # Convert RGB to BGR, which is what the camera outputs
msg.frame.image = img.flatten().tobytes()
except KeyError:
except (KeyError, ValueError):
pass
if w not in socks: