-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.cpp
47 lines (36 loc) · 1.37 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include <cstdio>
#include <highgui.h>
#include <cv.h>
int recogniseTrafficSigns(char* file)
{
int FPS = 5;//Domyślny 5 milisekund
cvNamedWindow("Camera",CV_WINDOW_AUTOSIZE);
CvCapture* capture = 0;
if(file == 0)
{
capture = cvCreateFileCapture(file);//Korzystamy z pliku
FPS = cvGetCaptureProperty(capture,CV_CAP_PROP_FPS);//Jaki FPS ma film
}
else capture = cvCreateCameraCapture(-1);//Bierzemy dowolną kamerkę zakładam ,że mamy 1
if(capture == 0){printf("\nNo source!\n");return -1;}
IplImage* frame = cvQueryFrame(capture);//Zakładam ,że wszystkie klatki będą takie same póxniej poprawie aby nie tracić tej 1 klatki
if(!frame)return -1;
IplImage* smallerFrame = cvCreateImage(cvSize(frame->width / 2 ,frame->height/2 ),frame->depth,frame->nChannels);
while(true)
{
frame = cvQueryFrame(capture);
if(!frame)break;//Przerywamy jeżeli nie ma klatki
cvPyrDown(frame,smallerFrame);
cvShowImage("Camera",frame);
char c = cvWaitKey(FPS);//Z jaką prędkością będzie pokazywany obraz
if(c == 27)break;//Esc - jeżeli wciśnięty to przerywamy
}
cvReleaseCapture(&capture);//Sprzątamy po sobie
cvDestroyWindow("Camera");
return 0;
}
int main(int argc,char* argv[])
{
if(recogniseTrafficSigns(argv[0]) == -1)printf("Error occured");
return 0;
}