opencv基础测量运行时间的函数getTickCount/getCPUTickCount/getTickFrequency
Posted 鹅要长大
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了opencv基础测量运行时间的函数getTickCount/getCPUTickCount/getTickFrequency相关的知识,希望对你有一定的参考价值。
函数的计算结果类型是double,单位是秒。
要使用更精确的计时,就需要使用getCPUTickCount(),不过现代计算机CPU的频率会随着负载而变化所以没大有必要使用该函数,可以参看函数的介绍【Also, since a modern CPU varies the CPU frequency depending on the load, the number of CPU clocks spent in some code cannot be directly converted to time units. Therefore,getTickCount is generally a preferable solution for measuring execution time.】也就是使用getTickCount就足够了。
参考
完
以上是关于opencv基础测量运行时间的函数getTickCount/getCPUTickCount/getTickFrequency的主要内容,如果未能解决你的问题,请参考以下文章