你好,
我想问一下, 我用Facedetect demo 的源程序做开发, 但我发现Facedetect demo 的帧率太低了, 即使去掉Facedetect的功能,但帧率依然太低(每秒只有6帧), 想提高帧率,不知用啥办法?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
你好,
我想问一下, 我用Facedetect demo 的源程序做开发, 但我发现Facedetect demo 的帧率太低了, 即使去掉Facedetect的功能,但帧率依然太低(每秒只有6帧), 想提高帧率,不知用啥办法?
您好!
在facedetect_lcdk.c 的文件里有如下设置
#define DISPLAY_IMAGE_WIDTH (640)
#define DISPLAY_IMAGE_HEIGHT (480)
这样设置下,我的LCD显示器显示图像正常, 但当我把DISPLAY_IMAGE_WIDTH和DISPLAY_IMAGE_HEIGHT 改小一半时, 也就是QVGA的模式:
#define DISPLAY_IMAGE_WIDTH (320)
#define DISPLAY_IMAGE_HEIGHT (240)
LCD显示器没有显示任何图像,是否还要修改其他LCD参数,请指教。