Hi,
Interested to try this out in my code (I'm new to Python).
Currently I open my stream with:
while cap.isOpened():
ret, frame = cap.read()
if not ret:
break
cv2_im = frame
I then have logic within the while loop.
How would I use this code to get the equivalent functionality?
Hi,
Interested to try this out in my code (I'm new to Python).
Currently I open my stream with:
I then have logic within the while loop.
How would I use this code to get the equivalent functionality?