I’ve implemented a facial detection + recognition code on the Jetson Nano, the facial detection part is implemented using MediaPipe 0.8.5 (BlazeFace model) and runs on the GPU of the Jetson nano, while the recognition is implemented using DLib’s face_recognition library and runs on the CPU of the Jetson Nano.
Commenting out the facial recognition part of the code, the facial detection part of the code runs at about 30 fps. But, when I try running both the detection+recognition the overall frame rate drops to about 5 fps.
Need help with how I can avoid this drastic drop in the overall frame rate on the Jetson Nano.