分辨率与处理时间

时间:2013-05-17 12:47:23

标签: opencv time resolution

我正在使用opencv从我的网络摄像头处理图像。我怎么知道我的处理器读取矩阵的每个像素所需的时间并显示出来?使用的算法并不重要,我需要图像分辨率与处理时间之间的通用关系。 抱歉英语。 感谢。

1 个答案:

答案 0 :(得分:0)

计算时间的一般方法(在vc9中):

#include <time.h>

main(){
 clock_t t = clock();
 //Some Code
 //..
 t = clock() - t; 
 printf ("\tRuntime: %f seconds.\n",((float)t)/CLOCKS_PER_SEC);
}