@stdmx/opencv4nodejs-prebuilt-install 4.1.206

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (107) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +119 -0
  3. package/lib/bundle.js +8 -0
  4. package/lib/commons.js +13 -0
  5. package/lib/cv.js +24 -0
  6. package/lib/dirs.js +24 -0
  7. package/lib/haarcascades/haarcascade_eye.xml +12213 -0
  8. package/lib/haarcascades/haarcascade_eye_tree_eyeglasses.xml +22619 -0
  9. package/lib/haarcascades/haarcascade_frontalcatface.xml +14382 -0
  10. package/lib/haarcascades/haarcascade_frontalcatface_extended.xml +13394 -0
  11. package/lib/haarcascades/haarcascade_frontalface_alt.xml +24350 -0
  12. package/lib/haarcascades/haarcascade_frontalface_alt2.xml +20719 -0
  13. package/lib/haarcascades/haarcascade_frontalface_alt_tree.xml +96484 -0
  14. package/lib/haarcascades/haarcascade_frontalface_default.xml +33314 -0
  15. package/lib/haarcascades/haarcascade_fullbody.xml +17030 -0
  16. package/lib/haarcascades/haarcascade_lefteye_2splits.xml +7390 -0
  17. package/lib/haarcascades/haarcascade_licence_plate_rus_16stages.xml +1404 -0
  18. package/lib/haarcascades/haarcascade_lowerbody.xml +14056 -0
  19. package/lib/haarcascades/haarcascade_profileface.xml +29690 -0
  20. package/lib/haarcascades/haarcascade_righteye_2splits.xml +7407 -0
  21. package/lib/haarcascades/haarcascade_russian_plate_number.xml +2656 -0
  22. package/lib/haarcascades/haarcascade_smile.xml +6729 -0
  23. package/lib/haarcascades/haarcascade_upperbody.xml +28134 -0
  24. package/lib/index.d.ts +65 -0
  25. package/lib/lbpcascades/lbpcascade_frontalcatface.xml +3768 -0
  26. package/lib/lbpcascades/lbpcascade_frontalface.xml +1505 -0
  27. package/lib/lbpcascades/lbpcascade_frontalface_improved.xml +1469 -0
  28. package/lib/lbpcascades/lbpcascade_profileface.xml +1275 -0
  29. package/lib/lbpcascades/lbpcascade_silverware.xml +1279 -0
  30. package/lib/opencv4nodejs.js +28 -0
  31. package/lib/promisify.js +37 -0
  32. package/lib/src/drawUtils.js +192 -0
  33. package/lib/src/index.js +12 -0
  34. package/lib/typings/AGASTDetector.d.ts +9 -0
  35. package/lib/typings/AKAZEDetector.d.ts +13 -0
  36. package/lib/typings/BFMatcher.d.ts +11 -0
  37. package/lib/typings/BRISKDetector.d.ts +9 -0
  38. package/lib/typings/BackgroundSubtractorKNN.d.ts +9 -0
  39. package/lib/typings/BackgroundSubtractorMOG2.d.ts +9 -0
  40. package/lib/typings/CascadeClassifier.d.ts +12 -0
  41. package/lib/typings/Contour.d.ts +30 -0
  42. package/lib/typings/DescriptorMatch.d.ts +5 -0
  43. package/lib/typings/DetectionROI.d.ts +8 -0
  44. package/lib/typings/EigenFaceRecognizer.d.ts +5 -0
  45. package/lib/typings/FASTDetector.d.ts +9 -0
  46. package/lib/typings/FaceRecognizer.d.ts +10 -0
  47. package/lib/typings/Facemark.d.ts +19 -0
  48. package/lib/typings/FacemarkAAMParams.d.ts +13 -0
  49. package/lib/typings/FacemarkLBF.d.ts +3 -0
  50. package/lib/typings/FacemarkLBFParams.d.ts +21 -0
  51. package/lib/typings/FacemarkrAAM.d.ts +3 -0
  52. package/lib/typings/FeatureDetector.d.ts +8 -0
  53. package/lib/typings/FisherFaceRecognizer.d.ts +5 -0
  54. package/lib/typings/GFTTDetector.d.ts +12 -0
  55. package/lib/typings/HOGDescriptor.d.ts +41 -0
  56. package/lib/typings/KAZEDetector.d.ts +12 -0
  57. package/lib/typings/KeyPoint.d.ts +12 -0
  58. package/lib/typings/KeyPointDetector.d.ts +7 -0
  59. package/lib/typings/LBPHFaceRecognizer.d.ts +5 -0
  60. package/lib/typings/MSERDetector.d.ts +20 -0
  61. package/lib/typings/Mat.d.ts +327 -0
  62. package/lib/typings/Moments.d.ts +27 -0
  63. package/lib/typings/MultiTracker.d.ts +12 -0
  64. package/lib/typings/Net.d.ts +10 -0
  65. package/lib/typings/OCRHMMClassifier.d.ts +7 -0
  66. package/lib/typings/OCRHMMDecoder.d.ts +11 -0
  67. package/lib/typings/ORBDetector.d.ts +15 -0
  68. package/lib/typings/ParamGrid.d.ts +7 -0
  69. package/lib/typings/Point.d.ts +8 -0
  70. package/lib/typings/Point2.d.ts +7 -0
  71. package/lib/typings/Point3.d.ts +8 -0
  72. package/lib/typings/Rect.d.ts +20 -0
  73. package/lib/typings/RotatedRect.d.ts +12 -0
  74. package/lib/typings/SIFTDetector.d.ts +11 -0
  75. package/lib/typings/SURFDetector.d.ts +11 -0
  76. package/lib/typings/SVM.d.ts +32 -0
  77. package/lib/typings/SimpleBlobDetector.d.ts +6 -0
  78. package/lib/typings/SimpleBlobDetectorParams.d.ts +22 -0
  79. package/lib/typings/Size.d.ts +6 -0
  80. package/lib/typings/SuperpixelLSC.d.ts +12 -0
  81. package/lib/typings/SuperpixelSEEDS.d.ts +15 -0
  82. package/lib/typings/SuperpixelSLIC.d.ts +13 -0
  83. package/lib/typings/TermCriteria.d.ts +7 -0
  84. package/lib/typings/TrackerBoosting.d.ts +11 -0
  85. package/lib/typings/TrackerBoostingParams.d.ts +8 -0
  86. package/lib/typings/TrackerCSRT.d.ts +11 -0
  87. package/lib/typings/TrackerCSRTParams.d.ts +31 -0
  88. package/lib/typings/TrackerGOTURN.d.ts +9 -0
  89. package/lib/typings/TrackerKCF.d.ts +11 -0
  90. package/lib/typings/TrackerKCFParams.d.ts +17 -0
  91. package/lib/typings/TrackerMIL.d.ts +11 -0
  92. package/lib/typings/TrackerMILParams.d.ts +10 -0
  93. package/lib/typings/TrackerMOSSE.d.ts +9 -0
  94. package/lib/typings/TrackerMedianFlow.d.ts +9 -0
  95. package/lib/typings/TrackerTLD.d.ts +9 -0
  96. package/lib/typings/TrainData.d.ts +9 -0
  97. package/lib/typings/Vec.d.ts +17 -0
  98. package/lib/typings/Vec2.d.ts +7 -0
  99. package/lib/typings/Vec3.d.ts +8 -0
  100. package/lib/typings/Vec4.d.ts +9 -0
  101. package/lib/typings/Vec6.d.ts +11 -0
  102. package/lib/typings/VideoCapture.d.ts +13 -0
  103. package/lib/typings/VideoWriter.d.ts +12 -0
  104. package/lib/typings/config.d.ts +13 -0
  105. package/lib/typings/constants.d.ts +604 -0
  106. package/lib/typings/cv.d.ts +223 -0
  107. package/package.json +52 -0
@@ -0,0 +1,1404 @@
1
+ <?xml version="1.0"?>
2
+ <opencv_storage>
3
+ <!-- Automatically converted from haarcascade2, window size = 64x16 -->
4
+ <haarcascade_pltzzz64x16_16STG type_id="opencv-haar-classifier">
5
+ <size>
6
+ 64 16</size>
7
+ <stages>
8
+ <_>
9
+ <!-- stage 0 -->
10
+ <trees>
11
+ <_>
12
+ <!-- tree 0 -->
13
+ <_>
14
+ <!-- root node -->
15
+ <feature>
16
+ <rects>
17
+ <_>
18
+ 32 2 8 6 -1.</_>
19
+ <_>
20
+ 32 4 8 2 3.</_></rects>
21
+ <tilted>0</tilted></feature>
22
+ <threshold>1.6915600746870041e-002</threshold>
23
+ <left_val>-9.5547717809677124e-001</left_val>
24
+ <right_val>8.9129137992858887e-001</right_val></_></_>
25
+ <_>
26
+ <!-- tree 1 -->
27
+ <_>
28
+ <!-- root node -->
29
+ <feature>
30
+ <rects>
31
+ <_>
32
+ 0 4 6 10 -1.</_>
33
+ <_>
34
+ 3 4 3 10 2.</_></rects>
35
+ <tilted>0</tilted></feature>
36
+ <threshold>2.4228349328041077e-002</threshold>
37
+ <left_val>-9.2089319229125977e-001</left_val>
38
+ <right_val>8.8723921775817871e-001</right_val></_></_>
39
+ <_>
40
+ <!-- tree 2 -->
41
+ <_>
42
+ <!-- root node -->
43
+ <feature>
44
+ <rects>
45
+ <_>
46
+ 55 0 8 6 -1.</_>
47
+ <_>
48
+ 55 0 4 3 2.</_>
49
+ <_>
50
+ 59 3 4 3 2.</_></rects>
51
+ <tilted>0</tilted></feature>
52
+ <threshold>-1.0168660432100296e-002</threshold>
53
+ <left_val>8.8940089941024780e-001</left_val>
54
+ <right_val>-7.7847331762313843e-001</right_val></_></_>
55
+ <_>
56
+ <!-- tree 3 -->
57
+ <_>
58
+ <!-- root node -->
59
+ <feature>
60
+ <rects>
61
+ <_>
62
+ 44 7 4 9 -1.</_>
63
+ <_>
64
+ 44 10 4 3 3.</_></rects>
65
+ <tilted>0</tilted></feature>
66
+ <threshold>2.0863260142505169e-003</threshold>
67
+ <left_val>-8.7998157739639282e-001</left_val>
68
+ <right_val>5.8651781082153320e-001</right_val></_></_></trees>
69
+ <stage_threshold>-2.0683259963989258e+000</stage_threshold>
70
+ <parent>-1</parent>
71
+ <next>-1</next></_>
72
+ <_>
73
+ <!-- stage 1 -->
74
+ <trees>
75
+ <_>
76
+ <!-- tree 0 -->
77
+ <_>
78
+ <!-- root node -->
79
+ <feature>
80
+ <rects>
81
+ <_>
82
+ 29 1 16 4 -1.</_>
83
+ <_>
84
+ 29 3 16 2 2.</_></rects>
85
+ <tilted>0</tilted></feature>
86
+ <threshold>2.9062159359455109e-002</threshold>
87
+ <left_val>-8.7765061855316162e-001</left_val>
88
+ <right_val>8.5373121500015259e-001</right_val></_></_>
89
+ <_>
90
+ <!-- tree 1 -->
91
+ <_>
92
+ <!-- root node -->
93
+ <feature>
94
+ <rects>
95
+ <_>
96
+ 0 5 9 8 -1.</_>
97
+ <_>
98
+ 3 5 3 8 3.</_></rects>
99
+ <tilted>0</tilted></feature>
100
+ <threshold>2.3903399705886841e-002</threshold>
101
+ <left_val>-9.2079448699951172e-001</left_val>
102
+ <right_val>7.5155001878738403e-001</right_val></_></_>
103
+ <_>
104
+ <!-- tree 2 -->
105
+ <_>
106
+ <!-- root node -->
107
+ <feature>
108
+ <rects>
109
+ <_>
110
+ 44 0 20 14 -1.</_>
111
+ <_>
112
+ 44 0 10 7 2.</_>
113
+ <_>
114
+ 54 7 10 7 2.</_></rects>
115
+ <tilted>0</tilted></feature>
116
+ <threshold>-3.5404648631811142e-002</threshold>
117
+ <left_val>6.7834627628326416e-001</left_val>
118
+ <right_val>-9.0937072038650513e-001</right_val></_></_>
119
+ <_>
120
+ <!-- tree 3 -->
121
+ <_>
122
+ <!-- root node -->
123
+ <feature>
124
+ <rects>
125
+ <_>
126
+ 41 7 6 9 -1.</_>
127
+ <_>
128
+ 43 7 2 9 3.</_></rects>
129
+ <tilted>0</tilted></feature>
130
+ <threshold>6.2988721765577793e-003</threshold>
131
+ <left_val>-8.1054258346557617e-001</left_val>
132
+ <right_val>5.8985030651092529e-001</right_val></_></_>
133
+ <_>
134
+ <!-- tree 4 -->
135
+ <_>
136
+ <!-- root node -->
137
+ <feature>
138
+ <rects>
139
+ <_>
140
+ 0 4 21 4 -1.</_>
141
+ <_>
142
+ 7 4 7 4 3.</_></rects>
143
+ <tilted>0</tilted></feature>
144
+ <threshold>3.4959490876644850e-003</threshold>
145
+ <left_val>-9.7632282972335815e-001</left_val>
146
+ <right_val>4.5473039150238037e-001</right_val></_></_></trees>
147
+ <stage_threshold>-1.6632349491119385e+000</stage_threshold>
148
+ <parent>0</parent>
149
+ <next>-1</next></_>
150
+ <_>
151
+ <!-- stage 2 -->
152
+ <trees>
153
+ <_>
154
+ <!-- tree 0 -->
155
+ <_>
156
+ <!-- root node -->
157
+ <feature>
158
+ <rects>
159
+ <_>
160
+ 31 2 11 6 -1.</_>
161
+ <_>
162
+ 31 4 11 2 3.</_></rects>
163
+ <tilted>0</tilted></feature>
164
+ <threshold>2.3864099755883217e-002</threshold>
165
+ <left_val>-9.3137168884277344e-001</left_val>
166
+ <right_val>8.2478952407836914e-001</right_val></_></_>
167
+ <_>
168
+ <!-- tree 1 -->
169
+ <_>
170
+ <!-- root node -->
171
+ <feature>
172
+ <rects>
173
+ <_>
174
+ 56 3 6 11 -1.</_>
175
+ <_>
176
+ 59 3 3 11 2.</_></rects>
177
+ <tilted>0</tilted></feature>
178
+ <threshold>-2.5775209069252014e-002</threshold>
179
+ <left_val>8.5526448488235474e-001</left_val>
180
+ <right_val>-8.7574672698974609e-001</right_val></_></_>
181
+ <_>
182
+ <!-- tree 2 -->
183
+ <_>
184
+ <!-- root node -->
185
+ <feature>
186
+ <rects>
187
+ <_>
188
+ 32 14 32 2 -1.</_>
189
+ <_>
190
+ 32 15 32 1 2.</_></rects>
191
+ <tilted>0</tilted></feature>
192
+ <threshold>-1.0646049864590168e-002</threshold>
193
+ <left_val>8.5167151689529419e-001</left_val>
194
+ <right_val>-6.7789041996002197e-001</right_val></_></_>
195
+ <_>
196
+ <!-- tree 3 -->
197
+ <_>
198
+ <!-- root node -->
199
+ <feature>
200
+ <rects>
201
+ <_>
202
+ 0 2 8 14 -1.</_>
203
+ <_>
204
+ 4 2 4 14 2.</_></rects>
205
+ <tilted>0</tilted></feature>
206
+ <threshold>2.7000989764928818e-002</threshold>
207
+ <left_val>-8.0041092634201050e-001</left_val>
208
+ <right_val>6.4893317222595215e-001</right_val></_></_>
209
+ <_>
210
+ <!-- tree 4 -->
211
+ <_>
212
+ <!-- root node -->
213
+ <feature>
214
+ <rects>
215
+ <_>
216
+ 19 0 22 6 -1.</_>
217
+ <_>
218
+ 19 0 11 3 2.</_>
219
+ <_>
220
+ 30 3 11 3 2.</_></rects>
221
+ <tilted>0</tilted></feature>
222
+ <threshold>5.2989721298217773e-003</threshold>
223
+ <left_val>-9.5342522859573364e-001</left_val>
224
+ <right_val>5.0140267610549927e-001</right_val></_></_></trees>
225
+ <stage_threshold>-1.3346730470657349e+000</stage_threshold>
226
+ <parent>1</parent>
227
+ <next>-1</next></_>
228
+ <_>
229
+ <!-- stage 3 -->
230
+ <trees>
231
+ <_>
232
+ <!-- tree 0 -->
233
+ <_>
234
+ <!-- root node -->
235
+ <feature>
236
+ <rects>
237
+ <_>
238
+ 56 0 6 6 -1.</_>
239
+ <_>
240
+ 56 0 3 3 2.</_>
241
+ <_>
242
+ 59 3 3 3 2.</_></rects>
243
+ <tilted>0</tilted></feature>
244
+ <threshold>-6.9233630783855915e-003</threshold>
245
+ <left_val>8.2654470205307007e-001</left_val>
246
+ <right_val>-8.5396027565002441e-001</right_val></_></_>
247
+ <_>
248
+ <!-- tree 1 -->
249
+ <_>
250
+ <!-- root node -->
251
+ <feature>
252
+ <rects>
253
+ <_>
254
+ 32 0 14 12 -1.</_>
255
+ <_>
256
+ 32 0 7 6 2.</_>
257
+ <_>
258
+ 39 6 7 6 2.</_></rects>
259
+ <tilted>0</tilted></feature>
260
+ <threshold>1.2539249658584595e-001</threshold>
261
+ <left_val>-1.2996139936149120e-002</left_val>
262
+ <right_val>-3.2377028808593750e+003</right_val></_></_>
263
+ <_>
264
+ <!-- tree 2 -->
265
+ <_>
266
+ <!-- root node -->
267
+ <feature>
268
+ <rects>
269
+ <_>
270
+ 2 1 43 4 -1.</_>
271
+ <_>
272
+ 2 3 43 2 2.</_></rects>
273
+ <tilted>0</tilted></feature>
274
+ <threshold>6.3474893569946289e-002</threshold>
275
+ <left_val>-6.4648061990737915e-001</left_val>
276
+ <right_val>8.2302427291870117e-001</right_val></_></_>
277
+ <_>
278
+ <!-- tree 3 -->
279
+ <_>
280
+ <!-- root node -->
281
+ <feature>
282
+ <rects>
283
+ <_>
284
+ 34 10 30 5 -1.</_>
285
+ <_>
286
+ 44 10 10 5 3.</_></rects>
287
+ <tilted>0</tilted></feature>
288
+ <threshold>4.2217150330543518e-002</threshold>
289
+ <left_val>-7.5190877914428711e-001</left_val>
290
+ <right_val>6.3705182075500488e-001</right_val></_></_>
291
+ <_>
292
+ <!-- tree 4 -->
293
+ <_>
294
+ <!-- root node -->
295
+ <feature>
296
+ <rects>
297
+ <_>
298
+ 0 9 9 5 -1.</_>
299
+ <_>
300
+ 3 9 3 5 3.</_></rects>
301
+ <tilted>0</tilted></feature>
302
+ <threshold>2.0000640302896500e-002</threshold>
303
+ <left_val>-6.2077498435974121e-001</left_val>
304
+ <right_val>6.1317932605743408e-001</right_val></_></_></trees>
305
+ <stage_threshold>-1.6521669626235962e+000</stage_threshold>
306
+ <parent>2</parent>
307
+ <next>-1</next></_>
308
+ <_>
309
+ <!-- stage 4 -->
310
+ <trees>
311
+ <_>
312
+ <!-- tree 0 -->
313
+ <_>
314
+ <!-- root node -->
315
+ <feature>
316
+ <rects>
317
+ <_>
318
+ 2 1 43 6 -1.</_>
319
+ <_>
320
+ 2 3 43 2 3.</_></rects>
321
+ <tilted>0</tilted></feature>
322
+ <threshold>9.2297486960887909e-002</threshold>
323
+ <left_val>-7.2764229774475098e-001</left_val>
324
+ <right_val>8.0554759502410889e-001</right_val></_></_>
325
+ <_>
326
+ <!-- tree 1 -->
327
+ <_>
328
+ <!-- root node -->
329
+ <feature>
330
+ <rects>
331
+ <_>
332
+ 53 4 9 8 -1.</_>
333
+ <_>
334
+ 56 4 3 8 3.</_></rects>
335
+ <tilted>0</tilted></feature>
336
+ <threshold>2.7613969519734383e-002</threshold>
337
+ <left_val>-7.0769268274307251e-001</left_val>
338
+ <right_val>7.3315787315368652e-001</right_val></_></_>
339
+ <_>
340
+ <!-- tree 2 -->
341
+ <_>
342
+ <!-- root node -->
343
+ <feature>
344
+ <rects>
345
+ <_>
346
+ 36 4 14 8 -1.</_>
347
+ <_>
348
+ 36 4 7 4 2.</_>
349
+ <_>
350
+ 43 8 7 4 2.</_></rects>
351
+ <tilted>0</tilted></feature>
352
+ <threshold>1.2465449981391430e-002</threshold>
353
+ <left_val>-8.4359270334243774e-001</left_val>
354
+ <right_val>5.7046437263488770e-001</right_val></_></_>
355
+ <_>
356
+ <!-- tree 3 -->
357
+ <_>
358
+ <!-- root node -->
359
+ <feature>
360
+ <rects>
361
+ <_>
362
+ 14 14 49 2 -1.</_>
363
+ <_>
364
+ 14 15 49 1 2.</_></rects>
365
+ <tilted>0</tilted></feature>
366
+ <threshold>-2.3886829614639282e-002</threshold>
367
+ <left_val>8.2656508684158325e-001</left_val>
368
+ <right_val>-5.2783298492431641e-001</right_val></_></_></trees>
369
+ <stage_threshold>-1.4523630142211914e+000</stage_threshold>
370
+ <parent>3</parent>
371
+ <next>-1</next></_>
372
+ <_>
373
+ <!-- stage 5 -->
374
+ <trees>
375
+ <_>
376
+ <!-- tree 0 -->
377
+ <_>
378
+ <!-- root node -->
379
+ <feature>
380
+ <rects>
381
+ <_>
382
+ 0 5 4 9 -1.</_>
383
+ <_>
384
+ 2 5 2 9 2.</_></rects>
385
+ <tilted>0</tilted></feature>
386
+ <threshold>1.8821349367499352e-002</threshold>
387
+ <left_val>-8.1122857332229614e-001</left_val>
388
+ <right_val>6.9127470254898071e-001</right_val></_></_>
389
+ <_>
390
+ <!-- tree 1 -->
391
+ <_>
392
+ <!-- root node -->
393
+ <feature>
394
+ <rects>
395
+ <_>
396
+ 21 1 38 4 -1.</_>
397
+ <_>
398
+ 21 3 38 2 2.</_></rects>
399
+ <tilted>0</tilted></feature>
400
+ <threshold>6.1703320592641830e-002</threshold>
401
+ <left_val>-7.6482647657394409e-001</left_val>
402
+ <right_val>6.4212161302566528e-001</right_val></_></_>
403
+ <_>
404
+ <!-- tree 2 -->
405
+ <_>
406
+ <!-- root node -->
407
+ <feature>
408
+ <rects>
409
+ <_>
410
+ 44 12 18 3 -1.</_>
411
+ <_>
412
+ 53 12 9 3 2.</_></rects>
413
+ <tilted>0</tilted></feature>
414
+ <threshold>-1.6298670321702957e-002</threshold>
415
+ <left_val>5.0207728147506714e-001</left_val>
416
+ <right_val>-8.4020161628723145e-001</right_val></_></_>
417
+ <_>
418
+ <!-- tree 3 -->
419
+ <_>
420
+ <!-- root node -->
421
+ <feature>
422
+ <rects>
423
+ <_>
424
+ 10 4 9 3 -1.</_>
425
+ <_>
426
+ 13 4 3 3 3.</_></rects>
427
+ <tilted>0</tilted></feature>
428
+ <threshold>-4.9458951689302921e-003</threshold>
429
+ <left_val>6.1991941928863525e-001</left_val>
430
+ <right_val>-6.1633539199829102e-001</right_val></_></_>
431
+ <_>
432
+ <!-- tree 4 -->
433
+ <_>
434
+ <!-- root node -->
435
+ <feature>
436
+ <rects>
437
+ <_>
438
+ 40 4 10 4 -1.</_>
439
+ <_>
440
+ 45 4 5 4 2.</_></rects>
441
+ <tilted>0</tilted></feature>
442
+ <threshold>-5.1894597709178925e-003</threshold>
443
+ <left_val>4.4975179433822632e-001</left_val>
444
+ <right_val>-8.0651968717575073e-001</right_val></_></_>
445
+ <_>
446
+ <!-- tree 5 -->
447
+ <_>
448
+ <!-- root node -->
449
+ <feature>
450
+ <rects>
451
+ <_>
452
+ 17 14 47 2 -1.</_>
453
+ <_>
454
+ 17 15 47 1 2.</_></rects>
455
+ <tilted>0</tilted></feature>
456
+ <threshold>-1.8824130296707153e-002</threshold>
457
+ <left_val>6.1992841958999634e-001</left_val>
458
+ <right_val>-5.5643159151077271e-001</right_val></_></_>
459
+ <_>
460
+ <!-- tree 6 -->
461
+ <_>
462
+ <!-- root node -->
463
+ <feature>
464
+ <rects>
465
+ <_>
466
+ 8 5 4 7 -1.</_>
467
+ <_>
468
+ 10 5 2 7 2.</_></rects>
469
+ <tilted>0</tilted></feature>
470
+ <threshold>5.6571601890027523e-003</threshold>
471
+ <left_val>-4.8346561193466187e-001</left_val>
472
+ <right_val>6.8647360801696777e-001</right_val></_></_></trees>
473
+ <stage_threshold>-2.2358059883117676e+000</stage_threshold>
474
+ <parent>4</parent>
475
+ <next>-1</next></_>
476
+ <_>
477
+ <!-- stage 6 -->
478
+ <trees>
479
+ <_>
480
+ <!-- tree 0 -->
481
+ <_>
482
+ <!-- root node -->
483
+ <feature>
484
+ <rects>
485
+ <_>
486
+ 56 0 6 6 -1.</_>
487
+ <_>
488
+ 56 0 3 3 2.</_>
489
+ <_>
490
+ 59 3 3 3 2.</_></rects>
491
+ <tilted>0</tilted></feature>
492
+ <threshold>-9.1503243893384933e-003</threshold>
493
+ <left_val>6.8174481391906738e-001</left_val>
494
+ <right_val>-7.7866071462631226e-001</right_val></_></_>
495
+ <_>
496
+ <!-- tree 1 -->
497
+ <_>
498
+ <!-- root node -->
499
+ <feature>
500
+ <rects>
501
+ <_>
502
+ 0 0 6 6 -1.</_>
503
+ <_>
504
+ 0 0 3 3 2.</_>
505
+ <_>
506
+ 3 3 3 3 2.</_></rects>
507
+ <tilted>0</tilted></feature>
508
+ <threshold>7.4933180585503578e-003</threshold>
509
+ <left_val>-6.8696027994155884e-001</left_val>
510
+ <right_val>6.6913938522338867e-001</right_val></_></_>
511
+ <_>
512
+ <!-- tree 2 -->
513
+ <_>
514
+ <!-- root node -->
515
+ <feature>
516
+ <rects>
517
+ <_>
518
+ 13 4 48 2 -1.</_>
519
+ <_>
520
+ 29 4 16 2 3.</_></rects>
521
+ <tilted>0</tilted></feature>
522
+ <threshold>4.5296419411897659e-002</threshold>
523
+ <left_val>-7.3576509952545166e-001</left_val>
524
+ <right_val>5.9453499317169189e-001</right_val></_></_>
525
+ <_>
526
+ <!-- tree 3 -->
527
+ <_>
528
+ <!-- root node -->
529
+ <feature>
530
+ <rects>
531
+ <_>
532
+ 42 1 6 15 -1.</_>
533
+ <_>
534
+ 42 6 6 5 3.</_></rects>
535
+ <tilted>0</tilted></feature>
536
+ <threshold>1.1669679544866085e-002</threshold>
537
+ <left_val>-8.4733831882476807e-001</left_val>
538
+ <right_val>4.5461329817771912e-001</right_val></_></_>
539
+ <_>
540
+ <!-- tree 4 -->
541
+ <_>
542
+ <!-- root node -->
543
+ <feature>
544
+ <rects>
545
+ <_>
546
+ 30 8 3 5 -1.</_>
547
+ <_>
548
+ 31 8 1 5 3.</_></rects>
549
+ <tilted>0</tilted></feature>
550
+ <threshold>2.5769430212676525e-003</threshold>
551
+ <left_val>-5.8270388841629028e-001</left_val>
552
+ <right_val>7.7900522947311401e-001</right_val></_></_>
553
+ <_>
554
+ <!-- tree 5 -->
555
+ <_>
556
+ <!-- root node -->
557
+ <feature>
558
+ <rects>
559
+ <_>
560
+ 55 10 8 6 -1.</_>
561
+ <_>
562
+ 55 13 8 3 2.</_></rects>
563
+ <tilted>0</tilted></feature>
564
+ <threshold>-1.4139170525595546e-003</threshold>
565
+ <left_val>4.5126929879188538e-001</left_val>
566
+ <right_val>-9.0696328878402710e-001</right_val></_></_></trees>
567
+ <stage_threshold>-1.8782069683074951e+000</stage_threshold>
568
+ <parent>5</parent>
569
+ <next>-1</next></_>
570
+ <_>
571
+ <!-- stage 7 -->
572
+ <trees>
573
+ <_>
574
+ <!-- tree 0 -->
575
+ <_>
576
+ <!-- root node -->
577
+ <feature>
578
+ <rects>
579
+ <_>
580
+ 4 6 4 7 -1.</_>
581
+ <_>
582
+ 6 6 2 7 2.</_></rects>
583
+ <tilted>0</tilted></feature>
584
+ <threshold>-5.3149578161537647e-003</threshold>
585
+ <left_val>6.5218788385391235e-001</left_val>
586
+ <right_val>-7.9464268684387207e-001</right_val></_></_>
587
+ <_>
588
+ <!-- tree 1 -->
589
+ <_>
590
+ <!-- root node -->
591
+ <feature>
592
+ <rects>
593
+ <_>
594
+ 56 3 6 8 -1.</_>
595
+ <_>
596
+ 59 3 3 8 2.</_></rects>
597
+ <tilted>0</tilted></feature>
598
+ <threshold>-2.2906960919499397e-002</threshold>
599
+ <left_val>6.6433382034301758e-001</left_val>
600
+ <right_val>-7.3633247613906860e-001</right_val></_></_>
601
+ <_>
602
+ <!-- tree 2 -->
603
+ <_>
604
+ <!-- root node -->
605
+ <feature>
606
+ <rects>
607
+ <_>
608
+ 37 2 4 6 -1.</_>
609
+ <_>
610
+ 37 4 4 2 3.</_></rects>
611
+ <tilted>0</tilted></feature>
612
+ <threshold>9.4887977465987206e-003</threshold>
613
+ <left_val>-8.2612031698226929e-001</left_val>
614
+ <right_val>4.9333500862121582e-001</right_val></_></_>
615
+ <_>
616
+ <!-- tree 3 -->
617
+ <_>
618
+ <!-- root node -->
619
+ <feature>
620
+ <rects>
621
+ <_>
622
+ 0 10 30 6 -1.</_>
623
+ <_>
624
+ 0 12 30 2 3.</_></rects>
625
+ <tilted>0</tilted></feature>
626
+ <threshold>4.5138411223888397e-002</threshold>
627
+ <left_val>-5.4704028367996216e-001</left_val>
628
+ <right_val>7.6927912235260010e-001</right_val></_></_>
629
+ <_>
630
+ <!-- tree 4 -->
631
+ <_>
632
+ <!-- root node -->
633
+ <feature>
634
+ <rects>
635
+ <_>
636
+ 0 4 21 12 -1.</_>
637
+ <_>
638
+ 7 4 7 12 3.</_></rects>
639
+ <tilted>0</tilted></feature>
640
+ <threshold>2.5049019604921341e-002</threshold>
641
+ <left_val>-8.6739641427993774e-001</left_val>
642
+ <right_val>5.2807968854904175e-001</right_val></_></_></trees>
643
+ <stage_threshold>-1.0597369670867920e+000</stage_threshold>
644
+ <parent>6</parent>
645
+ <next>-1</next></_>
646
+ <_>
647
+ <!-- stage 8 -->
648
+ <trees>
649
+ <_>
650
+ <!-- tree 0 -->
651
+ <_>
652
+ <!-- root node -->
653
+ <feature>
654
+ <rects>
655
+ <_>
656
+ 44 0 1 14 -1.</_>
657
+ <_>
658
+ 44 7 1 7 2.</_></rects>
659
+ <tilted>0</tilted></feature>
660
+ <threshold>6.6414438188076019e-003</threshold>
661
+ <left_val>-7.7290147542953491e-001</left_val>
662
+ <right_val>6.9723731279373169e-001</right_val></_></_>
663
+ <_>
664
+ <!-- tree 1 -->
665
+ <_>
666
+ <!-- root node -->
667
+ <feature>
668
+ <rects>
669
+ <_>
670
+ 54 3 4 3 -1.</_>
671
+ <_>
672
+ 56 3 2 3 2.</_></rects>
673
+ <tilted>0</tilted></feature>
674
+ <threshold>2.4703629314899445e-003</threshold>
675
+ <left_val>-7.4289917945861816e-001</left_val>
676
+ <right_val>6.6825848817825317e-001</right_val></_></_>
677
+ <_>
678
+ <!-- tree 2 -->
679
+ <_>
680
+ <!-- root node -->
681
+ <feature>
682
+ <rects>
683
+ <_>
684
+ 32 0 30 6 -1.</_>
685
+ <_>
686
+ 32 0 15 3 2.</_>
687
+ <_>
688
+ 47 3 15 3 2.</_></rects>
689
+ <tilted>0</tilted></feature>
690
+ <threshold>-2.2910499945282936e-002</threshold>
691
+ <left_val>4.3986389040946960e-001</left_val>
692
+ <right_val>-9.0588808059692383e-001</right_val></_></_>
693
+ <_>
694
+ <!-- tree 3 -->
695
+ <_>
696
+ <!-- root node -->
697
+ <feature>
698
+ <rects>
699
+ <_>
700
+ 0 8 9 7 -1.</_>
701
+ <_>
702
+ 3 8 3 7 3.</_></rects>
703
+ <tilted>0</tilted></feature>
704
+ <threshold>3.4193221479654312e-002</threshold>
705
+ <left_val>-6.9507479667663574e-001</left_val>
706
+ <right_val>6.2501090764999390e-001</right_val></_></_>
707
+ <_>
708
+ <!-- tree 4 -->
709
+ <_>
710
+ <!-- root node -->
711
+ <feature>
712
+ <rects>
713
+ <_>
714
+ 30 10 3 3 -1.</_>
715
+ <_>
716
+ 31 10 1 3 3.</_></rects>
717
+ <tilted>0</tilted></feature>
718
+ <threshold>1.5060020377859473e-003</threshold>
719
+ <left_val>-6.8670761585235596e-001</left_val>
720
+ <right_val>8.2241541147232056e-001</right_val></_></_>
721
+ <_>
722
+ <!-- tree 5 -->
723
+ <_>
724
+ <!-- root node -->
725
+ <feature>
726
+ <rects>
727
+ <_>
728
+ 21 3 24 4 -1.</_>
729
+ <_>
730
+ 29 3 8 4 3.</_></rects>
731
+ <tilted>0</tilted></feature>
732
+ <threshold>1.9838380467263050e-005</threshold>
733
+ <left_val>-9.2727631330490112e-001</left_val>
734
+ <right_val>6.4723730087280273e-001</right_val></_></_>
735
+ <_>
736
+ <!-- tree 6 -->
737
+ <_>
738
+ <!-- root node -->
739
+ <feature>
740
+ <rects>
741
+ <_>
742
+ 42 3 12 6 -1.</_>
743
+ <_>
744
+ 46 3 4 6 3.</_></rects>
745
+ <tilted>0</tilted></feature>
746
+ <threshold>-2.2170299416757189e-005</threshold>
747
+ <left_val>5.6555831432342529e-001</left_val>
748
+ <right_val>-9.6788132190704346e-001</right_val></_></_></trees>
749
+ <stage_threshold>-1.4993519783020020e+000</stage_threshold>
750
+ <parent>7</parent>
751
+ <next>-1</next></_>
752
+ <_>
753
+ <!-- stage 9 -->
754
+ <trees>
755
+ <_>
756
+ <!-- tree 0 -->
757
+ <_>
758
+ <!-- root node -->
759
+ <feature>
760
+ <rects>
761
+ <_>
762
+ 56 9 6 6 -1.</_>
763
+ <_>
764
+ 59 9 3 6 2.</_></rects>
765
+ <tilted>0</tilted></feature>
766
+ <threshold>-1.1395259760320187e-002</threshold>
767
+ <left_val>7.1383631229400635e-001</left_val>
768
+ <right_val>-8.7429678440093994e-001</right_val></_></_>
769
+ <_>
770
+ <!-- tree 1 -->
771
+ <_>
772
+ <!-- root node -->
773
+ <feature>
774
+ <rects>
775
+ <_>
776
+ 6 4 1 6 -1.</_>
777
+ <_>
778
+ 6 7 1 3 2.</_></rects>
779
+ <tilted>0</tilted></feature>
780
+ <threshold>-2.1864590235054493e-003</threshold>
781
+ <left_val>8.5311782360076904e-001</left_val>
782
+ <right_val>-6.4777731895446777e-001</right_val></_></_>
783
+ <_>
784
+ <!-- tree 2 -->
785
+ <_>
786
+ <!-- root node -->
787
+ <feature>
788
+ <rects>
789
+ <_>
790
+ 0 0 12 4 -1.</_>
791
+ <_>
792
+ 0 0 6 2 2.</_>
793
+ <_>
794
+ 6 2 6 2 2.</_></rects>
795
+ <tilted>0</tilted></feature>
796
+ <threshold>2.3193720262497663e-003</threshold>
797
+ <left_val>-7.6411879062652588e-001</left_val>
798
+ <right_val>7.1867972612380981e-001</right_val></_></_>
799
+ <_>
800
+ <!-- tree 3 -->
801
+ <_>
802
+ <!-- root node -->
803
+ <feature>
804
+ <rects>
805
+ <_>
806
+ 43 12 18 2 -1.</_>
807
+ <_>
808
+ 52 12 9 2 2.</_></rects>
809
+ <tilted>0</tilted></feature>
810
+ <threshold>-7.9916073009371758e-003</threshold>
811
+ <left_val>6.6442942619323730e-001</left_val>
812
+ <right_val>-7.9540950059890747e-001</right_val></_></_>
813
+ <_>
814
+ <!-- tree 4 -->
815
+ <_>
816
+ <!-- root node -->
817
+ <feature>
818
+ <rects>
819
+ <_>
820
+ 9 5 2 8 -1.</_>
821
+ <_>
822
+ 10 5 1 8 2.</_></rects>
823
+ <tilted>0</tilted></feature>
824
+ <threshold>1.4212740352377295e-003</threshold>
825
+ <left_val>-6.3904231786727905e-001</left_val>
826
+ <right_val>7.5050598382949829e-001</right_val></_></_></trees>
827
+ <stage_threshold>-8.4829801321029663e-001</stage_threshold>
828
+ <parent>8</parent>
829
+ <next>-1</next></_>
830
+ <_>
831
+ <!-- stage 10 -->
832
+ <trees>
833
+ <_>
834
+ <!-- tree 0 -->
835
+ <_>
836
+ <!-- root node -->
837
+ <feature>
838
+ <rects>
839
+ <_>
840
+ 1 9 6 3 -1.</_>
841
+ <_>
842
+ 3 9 2 3 3.</_></rects>
843
+ <tilted>0</tilted></feature>
844
+ <threshold>6.4091659151017666e-003</threshold>
845
+ <left_val>-8.8425230979919434e-001</left_val>
846
+ <right_val>9.9953681230545044e-001</right_val></_></_>
847
+ <_>
848
+ <!-- tree 1 -->
849
+ <_>
850
+ <!-- root node -->
851
+ <feature>
852
+ <rects>
853
+ <_>
854
+ 56 8 2 8 -1.</_>
855
+ <_>
856
+ 56 12 2 4 2.</_></rects>
857
+ <tilted>0</tilted></feature>
858
+ <threshold>-6.3316390151157975e-004</threshold>
859
+ <left_val>8.3822172880172729e-001</left_val>
860
+ <right_val>-9.8322170972824097e-001</right_val></_></_>
861
+ <_>
862
+ <!-- tree 2 -->
863
+ <_>
864
+ <!-- root node -->
865
+ <feature>
866
+ <rects>
867
+ <_>
868
+ 24 2 6 13 -1.</_>
869
+ <_>
870
+ 26 2 2 13 3.</_></rects>
871
+ <tilted>0</tilted></feature>
872
+ <threshold>-6.4947169448714703e-005</threshold>
873
+ <left_val>1.</left_val>
874
+ <right_val>-9.1822808980941772e-001</right_val></_></_>
875
+ <_>
876
+ <!-- tree 3 -->
877
+ <_>
878
+ <!-- root node -->
879
+ <feature>
880
+ <rects>
881
+ <_>
882
+ 33 7 24 4 -1.</_>
883
+ <_>
884
+ 41 7 8 4 3.</_></rects>
885
+ <tilted>0</tilted></feature>
886
+ <threshold>5.3404141217470169e-003</threshold>
887
+ <left_val>-9.4317251443862915e-001</left_val>
888
+ <right_val>9.0425151586532593e-001</right_val></_></_></trees>
889
+ <stage_threshold>-6.0007210820913315e-002</stage_threshold>
890
+ <parent>9</parent>
891
+ <next>-1</next></_>
892
+ <_>
893
+ <!-- stage 11 -->
894
+ <trees>
895
+ <_>
896
+ <!-- tree 0 -->
897
+ <_>
898
+ <!-- root node -->
899
+ <feature>
900
+ <rects>
901
+ <_>
902
+ 1 1 57 4 -1.</_>
903
+ <_>
904
+ 1 3 57 2 2.</_></rects>
905
+ <tilted>0</tilted></feature>
906
+ <threshold>1.0755469650030136e-001</threshold>
907
+ <left_val>-7.1647202968597412e-001</left_val>
908
+ <right_val>8.7827038764953613e-001</right_val></_></_>
909
+ <_>
910
+ <!-- tree 1 -->
911
+ <_>
912
+ <!-- root node -->
913
+ <feature>
914
+ <rects>
915
+ <_>
916
+ 0 2 6 14 -1.</_>
917
+ <_>
918
+ 3 2 3 14 2.</_></rects>
919
+ <tilted>0</tilted></feature>
920
+ <threshold>3.1668949872255325e-002</threshold>
921
+ <left_val>-8.7051069736480713e-001</left_val>
922
+ <right_val>5.8807212114334106e-001</right_val></_></_>
923
+ <_>
924
+ <!-- tree 2 -->
925
+ <_>
926
+ <!-- root node -->
927
+ <feature>
928
+ <rects>
929
+ <_>
930
+ 52 3 6 10 -1.</_>
931
+ <_>
932
+ 54 3 2 10 3.</_></rects>
933
+ <tilted>0</tilted></feature>
934
+ <threshold>-1.0572380386292934e-002</threshold>
935
+ <left_val>6.2438100576400757e-001</left_val>
936
+ <right_val>-7.4027371406555176e-001</right_val></_></_>
937
+ <_>
938
+ <!-- tree 3 -->
939
+ <_>
940
+ <!-- root node -->
941
+ <feature>
942
+ <rects>
943
+ <_>
944
+ 1 14 61 2 -1.</_>
945
+ <_>
946
+ 1 15 61 1 2.</_></rects>
947
+ <tilted>0</tilted></feature>
948
+ <threshold>-2.7396259829401970e-002</threshold>
949
+ <left_val>8.9776748418807983e-001</left_val>
950
+ <right_val>-5.2986758947372437e-001</right_val></_></_>
951
+ <_>
952
+ <!-- tree 4 -->
953
+ <_>
954
+ <!-- root node -->
955
+ <feature>
956
+ <rects>
957
+ <_>
958
+ 28 0 11 12 -1.</_>
959
+ <_>
960
+ 28 4 11 4 3.</_></rects>
961
+ <tilted>0</tilted></feature>
962
+ <threshold>2.5918649509549141e-002</threshold>
963
+ <left_val>-8.6482518911361694e-001</left_val>
964
+ <right_val>5.3121817111968994e-001</right_val></_></_></trees>
965
+ <stage_threshold>-9.6125108003616333e-001</stage_threshold>
966
+ <parent>10</parent>
967
+ <next>-1</next></_>
968
+ <_>
969
+ <!-- stage 12 -->
970
+ <trees>
971
+ <_>
972
+ <!-- tree 0 -->
973
+ <_>
974
+ <!-- root node -->
975
+ <feature>
976
+ <rects>
977
+ <_>
978
+ 22 1 41 4 -1.</_>
979
+ <_>
980
+ 22 3 41 2 2.</_></rects>
981
+ <tilted>0</tilted></feature>
982
+ <threshold>7.1039132773876190e-002</threshold>
983
+ <left_val>-7.5719678401947021e-001</left_val>
984
+ <right_val>7.5645631551742554e-001</right_val></_></_>
985
+ <_>
986
+ <!-- tree 1 -->
987
+ <_>
988
+ <!-- root node -->
989
+ <feature>
990
+ <rects>
991
+ <_>
992
+ 41 6 6 8 -1.</_>
993
+ <_>
994
+ 43 6 2 8 3.</_></rects>
995
+ <tilted>0</tilted></feature>
996
+ <threshold>7.6241148635745049e-003</threshold>
997
+ <left_val>-7.9783838987350464e-001</left_val>
998
+ <right_val>7.1733069419860840e-001</right_val></_></_>
999
+ <_>
1000
+ <!-- tree 2 -->
1001
+ <_>
1002
+ <!-- root node -->
1003
+ <feature>
1004
+ <rects>
1005
+ <_>
1006
+ 50 9 14 5 -1.</_>
1007
+ <_>
1008
+ 57 9 7 5 2.</_></rects>
1009
+ <tilted>0</tilted></feature>
1010
+ <threshold>-2.7092639356851578e-002</threshold>
1011
+ <left_val>6.0071170330047607e-001</left_val>
1012
+ <right_val>-8.4794402122497559e-001</right_val></_></_>
1013
+ <_>
1014
+ <!-- tree 3 -->
1015
+ <_>
1016
+ <!-- root node -->
1017
+ <feature>
1018
+ <rects>
1019
+ <_>
1020
+ 4 1 12 5 -1.</_>
1021
+ <_>
1022
+ 10 1 6 5 2.</_></rects>
1023
+ <tilted>0</tilted></feature>
1024
+ <threshold>-8.1267888890579343e-004</threshold>
1025
+ <left_val>5.9364068508148193e-001</left_val>
1026
+ <right_val>-8.9295238256454468e-001</right_val></_></_>
1027
+ <_>
1028
+ <!-- tree 4 -->
1029
+ <_>
1030
+ <!-- root node -->
1031
+ <feature>
1032
+ <rects>
1033
+ <_>
1034
+ 37 9 3 3 -1.</_>
1035
+ <_>
1036
+ 38 9 1 3 3.</_></rects>
1037
+ <tilted>0</tilted></feature>
1038
+ <threshold>8.3705072756856680e-004</threshold>
1039
+ <left_val>-6.4887362718582153e-001</left_val>
1040
+ <right_val>7.8537952899932861e-001</right_val></_></_></trees>
1041
+ <stage_threshold>-1.0618970394134521e+000</stage_threshold>
1042
+ <parent>11</parent>
1043
+ <next>-1</next></_>
1044
+ <_>
1045
+ <!-- stage 13 -->
1046
+ <trees>
1047
+ <_>
1048
+ <!-- tree 0 -->
1049
+ <_>
1050
+ <!-- root node -->
1051
+ <feature>
1052
+ <rects>
1053
+ <_>
1054
+ 54 0 10 6 -1.</_>
1055
+ <_>
1056
+ 54 0 5 3 2.</_>
1057
+ <_>
1058
+ 59 3 5 3 2.</_></rects>
1059
+ <tilted>0</tilted></feature>
1060
+ <threshold>-9.7556859254837036e-003</threshold>
1061
+ <left_val>7.6982218027114868e-001</left_val>
1062
+ <right_val>-8.5293501615524292e-001</right_val></_></_>
1063
+ <_>
1064
+ <!-- tree 1 -->
1065
+ <_>
1066
+ <!-- root node -->
1067
+ <feature>
1068
+ <rects>
1069
+ <_>
1070
+ 47 0 6 11 -1.</_>
1071
+ <_>
1072
+ 49 0 2 11 3.</_></rects>
1073
+ <tilted>0</tilted></feature>
1074
+ <threshold>-8.6617246270179749e-003</threshold>
1075
+ <left_val>8.4029090404510498e-001</left_val>
1076
+ <right_val>-7.1949690580368042e-001</right_val></_></_>
1077
+ <_>
1078
+ <!-- tree 2 -->
1079
+ <_>
1080
+ <!-- root node -->
1081
+ <feature>
1082
+ <rects>
1083
+ <_>
1084
+ 19 2 20 2 -1.</_>
1085
+ <_>
1086
+ 19 3 20 1 2.</_></rects>
1087
+ <tilted>0</tilted></feature>
1088
+ <threshold>1.6897840425372124e-002</threshold>
1089
+ <left_val>-5.3601992130279541e-001</left_val>
1090
+ <right_val>9.5484441518783569e-001</right_val></_></_>
1091
+ <_>
1092
+ <!-- tree 3 -->
1093
+ <_>
1094
+ <!-- root node -->
1095
+ <feature>
1096
+ <rects>
1097
+ <_>
1098
+ 14 4 6 11 -1.</_>
1099
+ <_>
1100
+ 17 4 3 11 2.</_></rects>
1101
+ <tilted>0</tilted></feature>
1102
+ <threshold>4.7526158596156165e-005</threshold>
1103
+ <left_val>-7.6412862539291382e-001</left_val>
1104
+ <right_val>7.5398761034011841e-001</right_val></_></_>
1105
+ <_>
1106
+ <!-- tree 4 -->
1107
+ <_>
1108
+ <!-- root node -->
1109
+ <feature>
1110
+ <rects>
1111
+ <_>
1112
+ 31 9 33 2 -1.</_>
1113
+ <_>
1114
+ 42 9 11 2 3.</_></rects>
1115
+ <tilted>0</tilted></feature>
1116
+ <threshold>6.5607670694589615e-003</threshold>
1117
+ <left_val>-9.9346441030502319e-001</left_val>
1118
+ <right_val>6.4864277839660645e-001</right_val></_></_></trees>
1119
+ <stage_threshold>-7.3307347297668457e-001</stage_threshold>
1120
+ <parent>12</parent>
1121
+ <next>-1</next></_>
1122
+ <_>
1123
+ <!-- stage 14 -->
1124
+ <trees>
1125
+ <_>
1126
+ <!-- tree 0 -->
1127
+ <_>
1128
+ <!-- root node -->
1129
+ <feature>
1130
+ <rects>
1131
+ <_>
1132
+ 6 1 53 6 -1.</_>
1133
+ <_>
1134
+ 6 3 53 2 3.</_></rects>
1135
+ <tilted>0</tilted></feature>
1136
+ <threshold>1.0103269666433334e-001</threshold>
1137
+ <left_val>-7.3275578022003174e-001</left_val>
1138
+ <right_val>8.4619927406311035e-001</right_val></_></_>
1139
+ <_>
1140
+ <!-- tree 1 -->
1141
+ <_>
1142
+ <!-- root node -->
1143
+ <feature>
1144
+ <rects>
1145
+ <_>
1146
+ 49 9 4 6 -1.</_>
1147
+ <_>
1148
+ 49 9 2 3 2.</_>
1149
+ <_>
1150
+ 51 12 2 3 2.</_></rects>
1151
+ <tilted>0</tilted></feature>
1152
+ <threshold>-2.8920811018906534e-004</threshold>
1153
+ <left_val>7.1564781665802002e-001</left_val>
1154
+ <right_val>-8.8221758604049683e-001</right_val></_></_>
1155
+ <_>
1156
+ <!-- tree 2 -->
1157
+ <_>
1158
+ <!-- root node -->
1159
+ <feature>
1160
+ <rects>
1161
+ <_>
1162
+ 0 9 30 7 -1.</_>
1163
+ <_>
1164
+ 10 9 10 7 3.</_></rects>
1165
+ <tilted>0</tilted></feature>
1166
+ <threshold>1.0838840156793594e-002</threshold>
1167
+ <left_val>-8.7420248985290527e-001</left_val>
1168
+ <right_val>6.0648679733276367e-001</right_val></_></_>
1169
+ <_>
1170
+ <!-- tree 3 -->
1171
+ <_>
1172
+ <!-- root node -->
1173
+ <feature>
1174
+ <rects>
1175
+ <_>
1176
+ 40 4 6 2 -1.</_>
1177
+ <_>
1178
+ 42 4 2 2 3.</_></rects>
1179
+ <tilted>0</tilted></feature>
1180
+ <threshold>5.0803890917450190e-004</threshold>
1181
+ <left_val>-9.0554022789001465e-001</left_val>
1182
+ <right_val>6.4213967323303223e-001</right_val></_></_>
1183
+ <_>
1184
+ <!-- tree 4 -->
1185
+ <_>
1186
+ <!-- root node -->
1187
+ <feature>
1188
+ <rects>
1189
+ <_>
1190
+ 1 9 6 1 -1.</_>
1191
+ <_>
1192
+ 3 9 2 1 3.</_></rects>
1193
+ <tilted>0</tilted></feature>
1194
+ <threshold>2.3357039317488670e-003</threshold>
1195
+ <left_val>-9.2574918270111084e-001</left_val>
1196
+ <right_val>8.6384928226470947e-001</right_val></_></_>
1197
+ <_>
1198
+ <!-- tree 5 -->
1199
+ <_>
1200
+ <!-- root node -->
1201
+ <feature>
1202
+ <rects>
1203
+ <_>
1204
+ 47 3 4 10 -1.</_>
1205
+ <_>
1206
+ 47 8 4 5 2.</_></rects>
1207
+ <tilted>0</tilted></feature>
1208
+ <threshold>8.0239427916239947e-005</threshold>
1209
+ <left_val>-9.9618428945541382e-001</left_val>
1210
+ <right_val>9.5355111360549927e-001</right_val></_></_>
1211
+ <_>
1212
+ <!-- tree 6 -->
1213
+ <_>
1214
+ <!-- root node -->
1215
+ <feature>
1216
+ <rects>
1217
+ <_>
1218
+ 31 5 30 11 -1.</_>
1219
+ <_>
1220
+ 41 5 10 11 3.</_></rects>
1221
+ <tilted>0</tilted></feature>
1222
+ <threshold>3.2030208967626095e-003</threshold>
1223
+ <left_val>-1.</left_val>
1224
+ <right_val>1.0001050233840942e+000</right_val></_></_>
1225
+ <_>
1226
+ <!-- tree 7 -->
1227
+ <_>
1228
+ <!-- root node -->
1229
+ <feature>
1230
+ <rects>
1231
+ <_>
1232
+ 0 0 2 1 -1.</_>
1233
+ <_>
1234
+ 1 0 1 1 2.</_></rects>
1235
+ <tilted>0</tilted></feature>
1236
+ <threshold>0.</threshold>
1237
+ <left_val>0.</left_val>
1238
+ <right_val>-1.</right_val></_></_>
1239
+ <_>
1240
+ <!-- tree 8 -->
1241
+ <_>
1242
+ <!-- root node -->
1243
+ <feature>
1244
+ <rects>
1245
+ <_>
1246
+ 21 3 42 5 -1.</_>
1247
+ <_>
1248
+ 35 3 14 5 3.</_></rects>
1249
+ <tilted>0</tilted></feature>
1250
+ <threshold>2.6143440045416355e-003</threshold>
1251
+ <left_val>-1.</left_val>
1252
+ <right_val>1.0002139806747437e+000</right_val></_></_>
1253
+ <_>
1254
+ <!-- tree 9 -->
1255
+ <_>
1256
+ <!-- root node -->
1257
+ <feature>
1258
+ <rects>
1259
+ <_>
1260
+ 0 0 2 1 -1.</_>
1261
+ <_>
1262
+ 1 0 1 1 2.</_></rects>
1263
+ <tilted>0</tilted></feature>
1264
+ <threshold>0.</threshold>
1265
+ <left_val>0.</left_val>
1266
+ <right_val>-1.</right_val></_></_>
1267
+ <_>
1268
+ <!-- tree 10 -->
1269
+ <_>
1270
+ <!-- root node -->
1271
+ <feature>
1272
+ <rects>
1273
+ <_>
1274
+ 8 5 30 9 -1.</_>
1275
+ <_>
1276
+ 8 8 30 3 3.</_></rects>
1277
+ <tilted>0</tilted></feature>
1278
+ <threshold>-7.0475979009643197e-004</threshold>
1279
+ <left_val>1.</left_val>
1280
+ <right_val>-9.9976968765258789e-001</right_val></_></_>
1281
+ <_>
1282
+ <!-- tree 11 -->
1283
+ <_>
1284
+ <!-- root node -->
1285
+ <feature>
1286
+ <rects>
1287
+ <_>
1288
+ 3 12 33 3 -1.</_>
1289
+ <_>
1290
+ 14 12 11 3 3.</_></rects>
1291
+ <tilted>0</tilted></feature>
1292
+ <threshold>2.1271279547363520e-003</threshold>
1293
+ <left_val>-9.9694627523422241e-001</left_val>
1294
+ <right_val>1.0002720355987549e+000</right_val></_></_>
1295
+ <_>
1296
+ <!-- tree 12 -->
1297
+ <_>
1298
+ <!-- root node -->
1299
+ <feature>
1300
+ <rects>
1301
+ <_>
1302
+ 0 0 3 2 -1.</_>
1303
+ <_>
1304
+ 1 0 1 2 3.</_></rects>
1305
+ <tilted>0</tilted></feature>
1306
+ <threshold>-2.4224430671893060e-004</threshold>
1307
+ <left_val>1.</left_val>
1308
+ <right_val>-1.</right_val></_></_>
1309
+ <_>
1310
+ <!-- tree 13 -->
1311
+ <_>
1312
+ <!-- root node -->
1313
+ <feature>
1314
+ <rects>
1315
+ <_>
1316
+ 46 4 3 8 -1.</_>
1317
+ <_>
1318
+ 47 4 1 8 3.</_></rects>
1319
+ <tilted>0</tilted></feature>
1320
+ <threshold>7.4700301047414541e-004</threshold>
1321
+ <left_val>-9.9108231067657471e-001</left_val>
1322
+ <right_val>9.9941182136535645e-001</right_val></_></_></trees>
1323
+ <stage_threshold>-1.0991690158843994e+000</stage_threshold>
1324
+ <parent>13</parent>
1325
+ <next>-1</next></_>
1326
+ <_>
1327
+ <!-- stage 15 -->
1328
+ <trees>
1329
+ <_>
1330
+ <!-- tree 0 -->
1331
+ <_>
1332
+ <!-- root node -->
1333
+ <feature>
1334
+ <rects>
1335
+ <_>
1336
+ 1 2 6 5 -1.</_>
1337
+ <_>
1338
+ 3 2 2 5 3.</_></rects>
1339
+ <tilted>0</tilted></feature>
1340
+ <threshold>1.7227890202775598e-003</threshold>
1341
+ <left_val>-9.3608891963958740e-001</left_val>
1342
+ <right_val>8.7251222133636475e-001</right_val></_></_>
1343
+ <_>
1344
+ <!-- tree 1 -->
1345
+ <_>
1346
+ <!-- root node -->
1347
+ <feature>
1348
+ <rects>
1349
+ <_>
1350
+ 0 3 18 5 -1.</_>
1351
+ <_>
1352
+ 6 3 6 5 3.</_></rects>
1353
+ <tilted>0</tilted></feature>
1354
+ <threshold>2.7599320746958256e-003</threshold>
1355
+ <left_val>-9.9757021665573120e-001</left_val>
1356
+ <right_val>1.0000289678573608e+000</right_val></_></_>
1357
+ <_>
1358
+ <!-- tree 2 -->
1359
+ <_>
1360
+ <!-- root node -->
1361
+ <feature>
1362
+ <rects>
1363
+ <_>
1364
+ 3 1 6 14 -1.</_>
1365
+ <_>
1366
+ 6 1 3 14 2.</_></rects>
1367
+ <tilted>0</tilted></feature>
1368
+ <threshold>-8.9444358309265226e-005</threshold>
1369
+ <left_val>1.</left_val>
1370
+ <right_val>-9.9264812469482422e-001</right_val></_></_>
1371
+ <_>
1372
+ <!-- tree 3 -->
1373
+ <_>
1374
+ <!-- root node -->
1375
+ <feature>
1376
+ <rects>
1377
+ <_>
1378
+ 3 6 2 10 -1.</_>
1379
+ <_>
1380
+ 3 11 2 5 2.</_></rects>
1381
+ <tilted>0</tilted></feature>
1382
+ <threshold>-2.7962020249105990e-004</threshold>
1383
+ <left_val>8.2833290100097656e-001</left_val>
1384
+ <right_val>-9.8444151878356934e-001</right_val></_></_>
1385
+ <_>
1386
+ <!-- tree 4 -->
1387
+ <_>
1388
+ <!-- root node -->
1389
+ <feature>
1390
+ <rects>
1391
+ <_>
1392
+ 42 0 4 6 -1.</_>
1393
+ <_>
1394
+ 42 0 2 3 2.</_>
1395
+ <_>
1396
+ 44 3 2 3 2.</_></rects>
1397
+ <tilted>0</tilted></feature>
1398
+ <threshold>-2.7560539820115082e-005</threshold>
1399
+ <left_val>1.</left_val>
1400
+ <right_val>-9.9543339014053345e-001</right_val></_></_></trees>
1401
+ <stage_threshold>-9.1314977407455444e-001</stage_threshold>
1402
+ <parent>14</parent>
1403
+ <next>-1</next></_></stages></haarcascade_pltzzz64x16_16STG>
1404
+ </opencv_storage>