Page 1 of 1

esp32-cam 如何测量mjpeg图片压缩和解码速率

Posted: Wed Jul 07, 2021 2:54 am
by __羊眸__
各位大佬,我使用了ESP32的示例CameraWebServer
https://github.com/RuiSantosdotme/ardui ... Server.git
现在想测量一下它的mjpeg图片压缩和解码速率,请问该如何测量呢?希望能得到指点。

Re: esp32-cam 如何测量mjpeg图片压缩和解码速率

Posted: Mon Jul 12, 2021 3:03 am
by ESP_ZhouL
个人的做法是直接记录解码/编码函数使用的时间,类似于下面这样:

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;