OpenCV 4로 배우는 컴퓨터 비전과 머신 러닝: 4.5.2 연산 시간 측정 - 1 (thebook.io)
/*https://thebook.io/006939/ch04/05/02-01/*/
#include<opencv2/opencv.hpp>
#include<iostream>
#include<sstream>
#include<time.h>
#include <Windows.h>
using namespace std;
using namespace cv;
void main()
{
int64 t1 = getTickCount();
VideoCapture cap(0);
while (1)
{
Mat src;
cap >> src;
if (!cap.isOpened())
{
cerr << "Can't open the cam";
return;
}
int64 t2 = getTickCount();
double ms = (t2 - t1) * 1000 / getTickFrequency();
cout << "연산시간: " << ms << endl;
imshow("src", src);
if (waitKey(1) == 27)
{
break;
}
}
}
'Vision' 카테고리의 다른 글
각도구하기 방법2 (RotatedRect 이용) (0) | 2021.07.20 |
---|---|
각도구하기 방법 1(도형의 꼭지점 이용) (0) | 2021.07.19 |
Angle&Gradient&Distance (0) | 2021.07.19 |
용어 정리 (0) | 2021.07.15 |
opencv) 객체 인식 및 중앙점과 기울기 추적 (0) | 2021.07.14 |