Is there a way to get the images(real-time video) from the oak-d-poe camera using opencv? i use python, opencv, window10, visual studio code, oak-d-poe camera
Hello seunghwa - using opencv, do you mean cv2.VideoCapture() or just getting frames to opencv format? If latter, yes; demo here. If former, UVC support docs here. Thanks, Erik
using opencv
cv2.VideoCapture()
erik Thanks Erik, I mean to use cv2.VideoCapture(). I want to output a video using cv2.VideoCapture().
Hello seunghwa , so you should follow UVC support documentation, which will make OAK device behave as a webcam and cv2.VideoCapture() will be able to pick up the video stream. Thanks, Erik