-
Notifications
You must be signed in to change notification settings - Fork 14
/
camera.cc
231 lines (184 loc) · 6.38 KB
/
camera.cc
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
#include "camera.hh"
#include <dmtx.h>
#include <cmath>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <pthread.h>
#include <vector>
#include <iostream>
#include <stdexcept>
Camera::Camera(int id_cam, int width, int height, double wc_height, double wc_offset_x,
double wc_offset_y, double wc_offset_angle) :
_id_cam(id_cam),
_tag(-1),
_width(width),
_height(height),
_wc_offset_x(wc_offset_x),
_wc_offset_y(wc_offset_y),
_wc_offset_angle(wc_offset_angle),
_expected_num_of_markers(0),
_workerTh_running(0),
_stop_workerTh(0)
{
_resolution = height / wc_height;
_sin_a = sin(wc_offset_angle);
_cos_a = cos(wc_offset_angle);
_greyMat = cv::Mat(_height, _width, CV_8UC1);
pthread_mutex_init(&_mutexLocalization, NULL);
pthread_mutex_init(&_mutexFrame, NULL);
}
Camera::~Camera(void)
{
//pthread_mutex_destroy(&_mutexLocalization);
//pthread_mutex_destroy(&_mutexFrame);
}
int Camera::get_id_cam()
{
return _id_cam;
}
int Camera::get_height()
{
return _height;
}
int Camera::get_width()
{
return _width;
}
int Camera::get_tag()
{
int copy;
pthread_mutex_lock(&_mutexLocalization);
copy = _tag;
pthread_mutex_unlock(&_mutexLocalization);
return copy;
}
std::vector<Marker> Camera::get_markers()
{
std::vector<Marker> copy;
pthread_mutex_lock(&_mutexLocalization);
copy = _markers;
pthread_mutex_unlock(&_mutexLocalization);
return copy;
}
cv::Mat* Camera::get_frame()
{
cv::Mat* frame;
pthread_mutex_lock(&_mutexFrame);
frame = new cv::Mat(_greyMat);
pthread_mutex_unlock(&_mutexFrame);
return frame;
}
void Camera::set_expected_num_of_markers(int n)
{
_expected_num_of_markers = n;
}
void* Camera::_localization_algorithm(void)
{
cv::VideoCapture cap(_id_cam);
if(!cap.isOpened()) {
std::cerr << "Camera " << _id_cam <<
" is already in use" << std::endl;
pthread_exit(0);
}
cap.set(CV_CAP_PROP_FRAME_WIDTH, _width);
cap.set(CV_CAP_PROP_FRAME_HEIGHT, _height);
cv::Mat frame;
DmtxImage *img;
DmtxDecode *dec;
DmtxRegion *reg;
DmtxMessage *msg;
DmtxTime timeout;
int smth_detected = 0;
for(;;){
if(_stop_workerTh)
pthread_exit(0);
std::vector<Marker> local_markers;
cap >> frame;
pthread_mutex_lock(&_mutexFrame);
cvtColor(frame, _greyMat, CV_BGR2GRAY);
pthread_mutex_unlock(&_mutexFrame);
uint8_t *pxl = (uint8_t*)_greyMat.data;
img = dmtxImageCreate(pxl, _width, _height, DmtxPack8bppK);
dec = dmtxDecodeCreate(img, 1);
dmtxDecodeSetProp(dec, DmtxPropSymbolSize, DmtxSymbol10x10);
int i;
for(i = 0; i < _expected_num_of_markers; i++){
// If the algorithm does not find any marker in 100ms, it skips the frame
timeout = dmtxTimeAdd(dmtxTimeNow(), 100);
reg = dmtxRegionFindNext(dec, &timeout);
if(reg != NULL) {
msg = dmtxDecodeMatrixRegion(dec, reg, DmtxUndefined);
if(msg != NULL) {
smth_detected = 1;
Marker marker;
// ID of the robot
marker.id =
std::atoi((reinterpret_cast<char*>(msg->output)));
// Intersection of the two solid borders, in pixels
DmtxVector2 p00, p10, p11, p01;
p00.X = p00.Y = p10.Y = p01.X = 0.0;
p10.X = p01.Y = p11.X = p11.Y = 1.0;
dmtxMatrix3VMultiplyBy(&p00, reg->fit2raw);
dmtxMatrix3VMultiplyBy(&p10, reg->fit2raw);
dmtxMatrix3VMultiplyBy(&p11, reg->fit2raw);
dmtxMatrix3VMultiplyBy(&p01, reg->fit2raw);
marker.cam_corner_posX = p00.X;
marker.cam_corner_posY = p00.Y;
uint16_t cx1 = (p10.X - p00.X)/2 + p00.X;
uint16_t cx2 = (p11.X - p01.X)/2 + p01.X;
uint16_t cy1 = (p01.Y - p00.Y)/2 + p00.Y;
uint16_t cy2 = (p11.Y - p10.Y)/2 + p10.Y;
marker.cam_center_posX = (cx1 + cx2)/2;
marker.cam_center_posY = (cy1 + cy2)/2;
// Angle in degress, w.r.t. the horizontal,
// of the bottom solid border, counter-clockwise
marker.cam_heading = atan2(p10.Y - p00.Y, p10.X - p00.X);
marker.wc_corner_posX = marker.cam_corner_posX*_cos_a/_resolution +
marker.cam_corner_posY*_sin_a/_resolution + _wc_offset_x;
marker.wc_corner_posY = -marker.cam_corner_posX*_sin_a/_resolution +
marker.cam_corner_posY*_cos_a/_resolution + _wc_offset_y;
marker.wc_center_posX = marker.cam_center_posX*_cos_a/_resolution +
marker.cam_center_posY*_sin_a/_resolution + _wc_offset_x;
marker.wc_center_posY = -marker.cam_center_posX*_sin_a/_resolution +
marker.cam_center_posY*_cos_a/_resolution + _wc_offset_y;
marker.wc_heading = marker.cam_heading - _wc_offset_angle;
local_markers.push_back(marker);
dmtxMessageDestroy(&msg);
}
dmtxRegionDestroy(®);
}else break;
}
dmtxImageDestroy(&img);
dmtxDecodeDestroy(&dec);
if(smth_detected)
{
smth_detected = 0;
pthread_mutex_lock(&_mutexLocalization);
_markers = local_markers;
_tag++;
pthread_mutex_unlock(&_mutexLocalization);
}
}
}
void * Camera::_localization_algorithm_helper(void * context)
{
return ((Camera *)context)->_localization_algorithm();
}
void Camera::run(void)
{
if(!_workerTh_running){
_workerTh_running = 1;
_stop_workerTh = 0;
pthread_create(&_worker_thread, NULL,
&Camera::_localization_algorithm_helper, this);
}else
std::cout << "Vision algorithm is already running for Camera " <<
_id_cam << std::endl;
}
void Camera::stop(void)
{
_stop_workerTh = 1;
pthread_join(_worker_thread, NULL);
_workerTh_running = 0;
}