关于该项目再树莓派上部署的帧率问题
Opened this issue · 0 comments
hkdddld commented
我是在int MTCNNDetection()函数 while(cap.isOpened())后面用double start = ncnn::get_current_time();开始计时在该循环的末尾 double end = ncnn::get_current_time();
double time = end - start;
double fps = 1000.0 / time;
printf("Detect Time:%7.2f \n",fps);来计算该项目的fps通过给给个模型推理过程添加多线程目前最大只能达到4-5左右有人知道是为啥吗