各位大佬,我使用了ESP32的示例CameraWebServer
https://github.com/RuiSantosdotme/ardui ... Server.git
现在想测量一下它的mjpeg图片压缩和解码速率,请问该如何测量呢?希望能得到指点。
esp32-cam 如何测量mjpeg图片压缩和解码速率
Re: esp32-cam 如何测量mjpeg图片压缩和解码速率
个人的做法是直接记录解码/编码函数使用的时间,类似于下面这样:
Code: Select all
uint64_t t1 = esp_timer_get_time();
decode(jpg_buf, length, rgb_buf);
uint64_t t_decode = esp_timer_get_time() - t1;
Who is online
Users browsing this forum: Google [Bot] and 105 guests