c/c++/OpenCV用于统计程序耗时的几种方法

c/c++用于计算程序耗时统计的几种方法

方法一 clock()函数

#include         
#include     
int main(const int argc,const char **argv)    
{
	long i = 10000000L;    
	clock_t start, end;    
    printf( "Time to do %ld empty loops is ", i );    
    start = clock();//start
    while( i-- );    
    end	 = clock();//end
    printf( "%f seconds\n", (double)(end - start) / CLOCKS_PER_SEC);    
    return 0;   
} 

更多关于time.h 相关的变量结构体函数使用可参考:飞机票✈ time.h

方法二 GetTickCount()函数

#include  
#include 
int main(const int argc,const char **argv)
{
	long i = 10000000L;
    DWORD start,end;
    printf( "Time to do %ld empty loops is ", i ); 
    start = GetTickCount();
	while( i-- );
    end = GetTickCount();
    printf( "%f seconds\n",(double)(start-end)/1000);
    return 0;
}

注意:windows.h,是windows 下的API接口,在linux下使用可能会报fatal error 的异常.

方法三 getTickCount()与getTickFrequency()函数

通常我们在做图片处理相关的业务时候需要对程序的性能做评估,OpenCV内部提供了两个函数用于计算程序的耗时,先看一个简单的demo

#include 
#include 
#include "opencv2/opencv.hpp"
using namespace std;
using namespace cv;
const string filename = "./lena.jpg";
int main(int argc, char **argv)
{
	int64 start=0,end=0;
	start = getTickCount();	//start
	Mat img,gray;
	img =imread(filename,1);
	cvtColor(img,gray,COLOR_BGR2GRAY);
	GaussianBlur(gray,gray,Size(7,7),1.5);//高斯滤波
	Canny(gray,gray,0,50);//边沿检测
	imshow("edges",gray);
	end = getTickCount(); //end
	printf("time: %f ms\n",1000.0*(end-start)/getTickFrequency());
	waitKey(0);

	return 0;
}

使用上述方法,必须要有OpenCV的开发环境,之余要怎么搭建OpenCV的开发环境,请同学自行百度解决。

你可能感兴趣的:(opencv,linux,c++)