My goal is to run python face recognition with Jetson inference.
Here this code: face_recognition/facerec_from_webcam_faster.py at master · ageitgey/face_recognition · GitHub
I want to join it with a Jetson Inference object detector code: jetson-inference/detectnet.py at master · dusty-nv/jetson-inference · GitHub
My problem is that the Jetson Inference code uses input = videoSource(“/dev/video0”) to read the camera, and the face recognition code uses video_capture = cv2.VideoCapture(0)
That is, one uses cuda and the other numpy, if I’m not mistaken (I’m not an expert).
How do I link the face recognition code with Jetson inference so that it can read the image of the jetson inference sample code?