JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
OpenCVTool.h
Go to the documentation of this file.
1#ifndef __JBXL_CPP_OPENCV_TOOl_H_
2#define __JBXL_CPP_OPENCV_TOOl_H_
3
4#ifndef ENABLE_OPENCV
5#error "OpenCVTool.h is called, but ENABLE_OPENCV is not defined."
6#endif
7
19#include "common++.h"
20#include "opencv2/opencv.hpp"
21
22#include "Gdata.h"
23#include "xtools.h"
24
25
26#ifdef WIN32
27#ifdef _DEBUG
28#pragma comment(lib, "opencv_core242d.lib")
29#pragma comment(lib, "opencv_imgproc242d.lib")
30#pragma comment(lib, "opencv_objdetect242d.lib")
31#else
32#pragma comment(lib, "opencv_core242.lib")
33#pragma comment(lib, "opencv_imgproc242.lib")
34#pragma comment(lib, "opencv_objdetect242.lib")
35#endif
36#endif
37
38
39//
40namespace jbxl {
41
42// template <typename T> rectangle* cvDetectObjects(cv::CascadeClassifier cascade, MSGraph<T>* vp, int& num, int sz=0, double scale=1.0)
43
44// template <typename R, typename T> cv::Mat copyMSGraph2CvMat(MSGraph<T>* vp)
45// template <typename T> MSGraph<T>* getMSGraphFromCvMat(cv::Mat mat)
46
47// 補助関数
48// template <typename T, typename R> MSGraph<T>* _getMSGraph_CvMat_C1(cv::Mat mat)
49// template <typename T, typename R> MSGraph<T>* _getMSGraph_CvMat_C3(cv::Mat mat)
50// template <typename R, typename T> int _linecopy_MAT2MSG_C3(R* src, T* dist, int len, int sz)
51
59template <typename T> rectangle* cvDetectObjects(cv::CascadeClassifier cascade, MSGraph<T>* vp, int& num, int sz=0, double scale=1.0)
60{
61 num = 0;
62
63 cv::Mat imag = copyMSGraph2CvMat<uByte>(vp);
64 cv::equalizeHist(imag, imag);
65
66 cv::Mat simg = imag;
67 if (scale>1.0) {
68 simg = cv::Mat_<uByte>((int)(imag.rows/scale), (int)(imag.cols/scale));
69 cv::resize(imag, simg, simg.size(), 0, 0, cv::INTER_LINEAR);
70 }
71 else scale = 1.0;
72
73 std::vector<cv::Rect> faces;
74 if (sz>1) cascade.detectMultiScale(simg, faces, 1.1, 3, 0, cv::Size(sz, sz));
75 else cascade.detectMultiScale(simg, faces);
76
77 num = (int)faces.size();
78 if (num==0) return NULL;
79
80 int len = sizeof(rectangle)*num;
81 rectangle* data = (rectangle*)malloc(len);
82 if (data==NULL) return NULL;
83 memset(data, 0, len);
84
85 int n = 0;
86 std::vector<cv::Rect>::const_iterator r;
87 for (r=faces.begin(); r!=faces.end(); r++) {
88 data[n].x = (int)(r->x*scale);
89 data[n].y = (int)(r->y*scale);
90 data[n].xsize = (int)(r->width *scale);
91 data[n].ysize = (int)(r->height*scale);
92 n++;
93 }
94 return data;
95}
96
97
114template <typename R, typename T> cv::Mat copyMSGraph2CvMat(MSGraph<T>* vp)
115{
116 cv::Mat mat;
117
118 if (vp->zs<=1) {
119 vp->zs = 1;
120 mat = cv::Mat_<R>(vp->ys, vp->xs);
121
122 // 通常は連続しているはず
123 if (mat.isContinuous()) {
124 R* dst = mat.ptr<R>(0);
125 for (int i=0; i<vp->xs*vp->ys; i++) {
126 dst[i] = (R)vp->gp[i];
127 }
128 }
129 else {
130 for (int j=0; j<vp->ys; j++) {
131 R* dst = mat.ptr<R>(j);
132 T* src = &(vp->gp[j*vp->xs]);
133 for (int i=0; i<vp->xs; i++) {
134 dst[i] = (R)src[i];
135 }
136 }
137 }
138 }
139
140 //
141 else {
142 int size[3];
143 size[0] = vp->zs;
144 size[1] = vp->ys;
145 size[2] = vp->xs;
146 mat = cv::Mat_<R>(3, size);
147
148 // 通常は連続しているはず
149 if (mat.isContinuous()) {
150 R* dst = (R*)mat.data;
151 for (int i=0; i<vp->xs*vp->ys*vp->zs; i++) {
152 dst[i] = (R)vp->gp[i];
153 }
154 }
155 else {
156 for (int k=0; k<vp->zs; k++) {
157 int kk = k*vp->ys*vp->xs;
158 for (int j=0; j<vp->ys; j++) {
159 R* dst = mat.ptr<R>(k, j);
160 T* src = &(vp->gp[j*vp->xs + kk]);
161 for (int i=0; i<vp->xs; i++) {
162 dst[i] = (R)src[i];
163 }
164 }
165 }
166 }
167 }
168 return mat;
169}
170
171
203template <typename T> MSGraph<T>* getMSGraphFromCvMat(cv::Mat mat)
204{
205 MSGraph<T>* vp = NULL;
206
207 if (mat.channels()==1) {
208 if (mat.depth()==CV_8U) vp = _getMSGraph_CvMat_C1<T, uByte>(mat);
209 else if (mat.depth()==CV_8S) vp = _getMSGraph_CvMat_C1<T, sByte>(mat);
210 else if (mat.depth()==CV_16U) vp = _getMSGraph_CvMat_C1<T, uWord>(mat);
211 else if (mat.depth()==CV_16S) vp = _getMSGraph_CvMat_C1<T, sWord>(mat);
212 else if (mat.depth()==CV_32S) vp = _getMSGraph_CvMat_C1<T, int>(mat);
213 //else if (mat.depth()==CV_32F) vp = _getMSGraph_CvMat_C1<T, double>(mat);
214 //else if (mat.depth()==CV_64F) vp = _getMSGraph_CvMat_C1<T, double>(mat);
215 }
216
217 else if (mat.channels()==3) {
218 if (mat.depth()==CV_8U) vp = _getMSGraph_CvMat_C3<T, uByte>(mat);
219 else if (mat.depth()==CV_8S) vp = _getMSGraph_CvMat_C3<T, sByte>(mat);
220 else if (mat.depth()==CV_16U) vp = _getMSGraph_CvMat_C3<T, uWord>(mat);
221 else if (mat.depth()==CV_16S) vp = _getMSGraph_CvMat_C3<T, sWord>(mat);
222 else if (mat.depth()==CV_32S) vp = _getMSGraph_CvMat_C3<T, int>(mat);
223 //else if (mat.depth()==CV_32F) vp = getMSGraph_CvMatC3<T, double>(mat);
224 //else if (mat.depth()==CV_64F) vp = getMSGraph_CvMatC3<T, double>(mat);
225 }
226 return vp;
227}
228
229
230// getMSGraphFromCvMat() の補助関数.
231// チャンネル数1用
232//
233template <typename T, typename R> MSGraph<T>* _getMSGraph_CvMat_C1(cv::Mat mat)
234{
235 MSGraph<T>* vp = NULL;
236
237 if (mat.channels()!=1) return NULL;
238
239 if (mat.dims==2) {
240 vp = new MSGraph<T>(mat.cols, mat.rows);
241 if (vp==NULL || vp->gp==NULL) return vp;
242
243 // 通常は連続しているはず
244 if (mat.isContinuous()) {
245 R* ptr = (R*)mat.data;
246 T* dst = vp->gp;
247 for (int i=0; i<vp->xs*vp->ys; i++) {
248 dst[i] = (T)ptr[i];
249 }
250 }
251 else {
252 for (int j=0; j<vp->ys; j++) {
253 R* ptr = mat.ptr<R>(j);
254 T* dst = &(vp->gp[j*vp->xs]);
255 for (int i=0; i<vp->xs; i++) {
256 dst[i] = (T)ptr[i];
257 }
258 }
259 }
260 //
262 }
263
264 // 3次元
265 else if (mat.dims==3) {
266 vp = new MSGraph<T>((int)mat.size[2], (int)mat.size[1], (int)mat.size[0]);
267 if (vp==NULL || vp->gp==NULL) return vp;
268
269 // 通常は連続しているはず
270 if (mat.isContinuous()) {
271 R* ptr = (R*)mat.data;
272 T* dst = vp->gp;
273 for (int i=0; i<vp->xs*vp->ys*vp->zs; i++) {
274 dst[i] = (T)ptr[i];
275 }
276 }
277 else {
278 for (int k=0; k<vp->zs; k++) {
279 int kk = k*vp->ys*vp->xs;
280 for (int j=0; j<vp->ys; j++) {
281 R* ptr = mat.ptr<R>(k, j);
282 T* dst = &(vp->gp[j*vp->xs + kk]);
283 for (int i=0; i<vp->xs; i++) {
284 dst[i] = (T)ptr[i];
285 }
286 }
287 }
288 }
289 //
291 }
292 return vp;
293}
294
295
296// getMSGraphFromCvMat() の補助関数.
297// チャンネル数 3用
298//
299template <typename T, typename R> MSGraph<T>* _getMSGraph_CvMat_C3(cv::Mat mat)
300{
301 MSGraph<T>* vp = NULL;
302
303 if (mat.channels()!=3) return NULL;
304 int tsz = sizeof(T);
305
306 if (mat.dims==2) {
307 vp = new MSGraph<T>(mat.cols, mat.rows);
308 if (vp==NULL || vp->gp==NULL) return vp;
309
310 // 通常は連続しているはず
311 if (mat.isContinuous()) {
312 R* src = (R*)mat.data;
313 T* dst = vp->gp;
314 vp->color = _linecopy_MAT2MSG_C3(src, dst, vp->xs*vp->ys, tsz);
315 }
316
317 else {
318 for (int j=0; j<vp->ys; j++) {
319 R* src = mat.ptr<R>(j);
320 T* dst = &(vp->gp[j*vp->xs]);
321 _linecopy_MAT2MSG_C3(src, dst, vp->xs, tsz);
322 }
323 vp->color = _linecopy_MAT2MSG_C3((R*)NULL, (T*)NULL, 0, tsz); // return color only
324 }
325 }
326
327 // 3次元
328 else if (mat.dims==3) {
329 vp = new MSGraph<T>((int)mat.size[2], (int)mat.size[1], (int)mat.size[0]);
330 if (vp==NULL || vp->gp==NULL) return vp;
331
332 // 通常は連続しているはず
333 if (mat.isContinuous()) {
334 R* src = (R*)mat.data;
335 T* dst = vp->gp;
336 vp->color = _linecopy_MAT2MSG_C3(src, dst, vp->xs*vp->ys*vp->zs, tsz);
337 }
338 else {
339 for (int k=0; k<vp->zs; k++) {
340 int kk = k*vp->ys*vp->xs;
341 for (int j=0; j<vp->ys; j++) {
342 R* src = mat.ptr<R>(k, j);
343 T* dst = &(vp->gp[j*vp->xs + kk]);
344 for (int i=0; i<vp->xs; i++) {
345 _linecopy_MAT2MSG_C3(src, dst, vp->xs, tsz);
346 }
347 }
348 }
349 vp->color = _linecopy_MAT2MSG_C3((R*)NULL, (T*)NULL, 0, tsz); // return color only
350 }
351 }
352 return vp;
353}
354
355
356// getMSGraphFromCvMat() の補助関数.
357//
358template <typename R, typename T> int _linecopy_MAT2MSG_C3(R* src, T* dst, int len, int sz)
359{
360 int i3 = 0;
361 int color = GRAPH_COLOR_MONO;
362
363 if (sz==1) {
364 for (int i=0; i<len; i++) {
365 dst[i] = (T)(((unsigned int)src[i3] + (unsigned int)src[i3+1] + (unsigned int)src[i3+2])/3);
366 i3 += 3;
367 }
368 }
369
370 else if (sz==2) {
371 for (int i=0; i<len; i++) {
372 dst[i] = (T)RGB2Word((unsigned int)src[i3+2], (unsigned int)src[i3+1], (unsigned int)src[i3]);
373 i3 += 3;
374 }
375 color = GRAPH_COLOR_RGB16;
376 }
377
378 else {
379 for (int i=0; i<len; i++) {
380 dst[i] = (T)ABGR2Int(0, (unsigned int)src[i3], (unsigned int)src[i3+1], (unsigned int)src[i3+2]);
381 i3 += 3;
382 }
383 color = GRAPH_COLOR_ABGR;
384 }
385
386 return color;
387}
388
389
390} // namespace
391
392
393#endif
394
グラフィックデータ定義用ヘッダ
#define ABGR2Int(a, b, g, r)
Definition Gdata.h:1021
T * gp
グラフィックデータへのポインタ.
Definition Gdata.h:81
int color
データのカラータイプ
Definition Gdata.h:89
int zs
zサイズ. 4Byte. 2Dの場合は 1.
Definition Gdata.h:80
int xs
xサイズ. 4Byte.
Definition Gdata.h:78
int ys
yサイズ. 4Byte.
Definition Gdata.h:79
Common Header for C++.
#define GRAPH_COLOR_ABGR
Definition gheader.h:291
#define GRAPH_COLOR_RGB16
Definition gheader.h:251
#define GRAPH_COLOR_MONO
0x0000
Definition gheader.h:242
Definition Brep.h:29
uWord RGB2Word(uWord r, uWord g, uWord b)
Definition Gdata.h:1050
cv::Mat copyMSGraph2CvMat(MSGraph< T > *vp)
Definition OpenCVTool.h:114
int _linecopy_MAT2MSG_C3(R *src, T *dst, int len, int sz)
Definition OpenCVTool.h:358
MSGraph< T > * _getMSGraph_CvMat_C1(cv::Mat mat)
Definition OpenCVTool.h:233
MSGraph< T > * _getMSGraph_CvMat_C3(cv::Mat mat)
Definition OpenCVTool.h:299
rectangle * cvDetectObjects(cv::CascadeClassifier cascade, MSGraph< T > *vp, int &num, int sz=0, double scale=1.0)
Definition OpenCVTool.h:59
MSGraph< T > * getMSGraphFromCvMat(cv::Mat mat)
Definition OpenCVTool.h:203
汎用拡張ツールヘッダ