-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutilities.cpp
165 lines (141 loc) · 5.27 KB
/
utilities.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#include "utilities.hpp"
#include <stdio.h>
#include <cassert>
#ifdef WINDOWS
#include <direct.h>
#define GetCurrentDir _getcwd
#else
#include <unistd.h>
#define GetCurrentDir getcwd
#endif
using namespace cv;
void clampRectangleToVideoDemensions(Rect &searchFrame,const Size &videoDimensions)
{
if(searchFrame.x <= 0)
searchFrame.x = 0;
if(searchFrame.x >= videoDimensions.width-searchFrame.width)
searchFrame.x = videoDimensions.width-searchFrame.width;
if(searchFrame.y <= 0)
searchFrame.y = 0;
if(searchFrame.y >= videoDimensions.height-searchFrame.height)
searchFrame.y = videoDimensions.height-searchFrame.height;
}
Rect createOuterFrameFromInnerFrame(const Rect ®ionOfInterest,const Size &videoDimensions, int factor )
{
Rect searchFrame(
regionOfInterest.x-((factor*regionOfInterest.width)/2-regionOfInterest.width/2),
regionOfInterest.y-((factor*regionOfInterest.height)/2-regionOfInterest.height/2),
factor*regionOfInterest.width,
factor*regionOfInterest.height);
clampRectangleToVideoDemensions(searchFrame, videoDimensions);
return searchFrame;
}
void DrawPoint( Mat &img,const Point ¢er,const Scalar &Color)
{
int thickness = -1;
int lineType = 1;
double radius = 0.5;
circle( img,
center,
radius,
Color,
thickness,
lineType );
}
void drawRectangle(const Rect &rectangleToDraw,Mat &matrixToDrawTheRectangleIn,const Scalar &color)
{
line(matrixToDrawTheRectangleIn,
Point(rectangleToDraw.x,rectangleToDraw.y),
Point(rectangleToDraw.x+rectangleToDraw.width,rectangleToDraw.y),
color,
0,1);
line(matrixToDrawTheRectangleIn,
Point(rectangleToDraw.x+rectangleToDraw.width,rectangleToDraw.y),
Point(rectangleToDraw.x+rectangleToDraw.width,rectangleToDraw.y+rectangleToDraw.height),
color,
0,1);
line(matrixToDrawTheRectangleIn,
Point(rectangleToDraw.x+rectangleToDraw.width,rectangleToDraw.y+rectangleToDraw.height),
Point(rectangleToDraw.x,rectangleToDraw.y+rectangleToDraw.height),
color,
0,1);
line(matrixToDrawTheRectangleIn,
Point(rectangleToDraw.x,rectangleToDraw.y+rectangleToDraw.height),
Point(rectangleToDraw.x,rectangleToDraw.y),
color,
0,1);
}
void createNewInnerFrameFromMatchLocation(const Point &matchLoc,Rect ®ionOfInterest,const Size &videoDimensions)
{
regionOfInterest = Rect(
matchLoc.x-regionOfInterest.width/2,
matchLoc.y-regionOfInterest.height/2,
regionOfInterest.width,
regionOfInterest.height);
clampRectangleToVideoDemensions(regionOfInterest,videoDimensions);
}
Point buttonDownPosition(-1,-1);
void mouseCallBack(int event, int x, int y, int flags, void* userdata)
{
// change size of innerFrame
if ( event == EVENT_LBUTTONDOWN )
{
buttonDownPosition.x = x;
buttonDownPosition.y = y;
}
if(buttonDownPosition.x != -1 && buttonDownPosition.y != -1)
{
mouseEventInformation* info = (mouseEventInformation*)userdata;
if(x >= buttonDownPosition.x)
{
info->innerFrame->x = buttonDownPosition.x;
info->innerFrame->width = (std::max(8, x - buttonDownPosition.x)) & ~1;
}
else //(x < buttonDownPosition.x)
{
info->innerFrame->x = x;
info->innerFrame->width = (std::max(8,buttonDownPosition.x - x)) & ~1;
}
if(y >= buttonDownPosition.y)
{
info->innerFrame->y = buttonDownPosition.y;
info->innerFrame->height = (std::max(8, y - buttonDownPosition.y)) & ~1;
}
else //(y < buttonDownPosition.y)
{
info->innerFrame->y = y;
info->innerFrame->height = (std::max(8,buttonDownPosition.y - y)) & ~1;
}
*(info->searchFrame) = createOuterFrameFromInnerFrame(*(info->innerFrame), *(info->videoDimensions));
assert(info->searchFrame->width >= 0 || info->searchFrame->height >= 0 || info->innerFrame->width >= 0 || info->innerFrame->height >= 0 || info->searchFrame->width > info->innerFrame->width || info->searchFrame->height > info->innerFrame->height);
}
if( event == EVENT_LBUTTONUP)
{
buttonDownPosition.x = -1;
buttonDownPosition.y = -1;
}
}
VideoCapture webcam(const int cameraIndex)
{
printf ("Successfully opened Camera with Index: %d\n",cameraIndex);
return VideoCapture(cameraIndex);
}
VideoCapture videoFile(const std::string &videoFileName)
{
char cCurrentPath[FILENAME_MAX];
if (!GetCurrentDir(cCurrentPath, sizeof(cCurrentPath)))
{
exit(-1);
}
cCurrentPath[sizeof(cCurrentPath) - 1] = '\0'; /* not really required */
VideoCapture videoHandle = VideoCapture(videoFileName); // open the default camera
if(!videoHandle.isOpened()) // check if we succeeded
{
throw("Could not find File: %s/%s\n", cCurrentPath,videoFileName.c_str());
//printf ("Could not find File: %s/%s\n", cCurrentPath,videoFileName.c_str());
//exit(-1);
}else{
printf ("Successfully loaded File: %s/%s\n", cCurrentPath,videoFileName.c_str());
}
return videoHandle;
}