opencv计算时间

double t = (double)getTickCount();// 做点什么 ...
t = ((double)getTickCount() - t)/getTickFrequency();
cout << "Times passed in seconds: " << t << endl;


你可能感兴趣的:(opencv计算时间)