ropencv 0.0.1
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.
- data/.gitignore +1 -0
- data/CMakeLists.txt +19 -0
- data/README.md +61 -0
- data/examples/logo.png +0 -0
- data/examples/test.rb +16 -0
- data/ext/CMakeLists.txt +32 -0
- data/ext/extconf.rb +113 -0
- data/ext/opencv.txt +442 -0
- data/ext/parser_out.txt +3881 -0
- data/ext/post_opencv244.txt +13 -0
- data/ext/post_opencv249.txt +19 -0
- data/ext/pre_opencv244.txt +48 -0
- data/ext/rbind.pc.in +11 -0
- data/ext/rbind_opencv.pc +11 -0
- data/ext/ropencv/CMakeLists.txt +30 -0
- data/ext/specializing.rb +50 -0
- data/lib/ropencv/ropencv_ruby.rb +247 -0
- data/lib/ropencv.rb +2 -0
- data/ropencv.gemspec +17 -0
- metadata +94 -0
data/ext/parser_out.txt
ADDED
@@ -0,0 +1,3881 @@
|
|
1
|
+
const cv.GlBuffer.ARRAY_BUFFER 0x8892
|
2
|
+
const cv.GlBuffer.TEXTURE_BUFFER 0x88EC
|
3
|
+
const cv.GlFont.WEIGHT_LIGHT 300
|
4
|
+
const cv.GlFont.WEIGHT_NORMAL 400
|
5
|
+
const cv.GlFont.WEIGHT_SEMIBOLD 600
|
6
|
+
const cv.GlFont.WEIGHT_BOLD 700
|
7
|
+
const cv.GlFont.WEIGHT_BLACK 900
|
8
|
+
const cv.GlFont.STYLE_NORMAL 0
|
9
|
+
const cv.GlFont.STYLE_ITALIC 1
|
10
|
+
const cv.GlFont.STYLE_UNDERLINE 2
|
11
|
+
const cv.RenderMode.POINTS 0x0000
|
12
|
+
const cv.RenderMode.LINES 0x0001
|
13
|
+
const cv.RenderMode.LINE_LOOP 0x0002
|
14
|
+
const cv.RenderMode.LINE_STRIP 0x0003
|
15
|
+
const cv.RenderMode.TRIANGLES 0x0004
|
16
|
+
const cv.RenderMode.TRIANGLE_STRIP 0x0005
|
17
|
+
const cv.RenderMode.TRIANGLE_FAN 0x0006
|
18
|
+
const cv.RenderMode.QUADS 0x0007
|
19
|
+
const cv.RenderMode.QUAD_STRIP 0x0008
|
20
|
+
const cv.RenderMode.POLYGON 0x0009
|
21
|
+
const cv._InputArray.KIND_SHIFT 16
|
22
|
+
const cv._InputArray.FIXED_TYPE 0x8000 << KIND_SHIFT
|
23
|
+
const cv._InputArray.FIXED_SIZE 0x4000 << KIND_SHIFT
|
24
|
+
const cv._InputArray.KIND_MASK ~(FIXED_TYPE|FIXED_SIZE) - (1 << KIND_SHIFT) + 1
|
25
|
+
const cv._InputArray.NONE 0 << KIND_SHIFT
|
26
|
+
const cv._InputArray.MAT 1 << KIND_SHIFT
|
27
|
+
const cv._InputArray.MATX 2 << KIND_SHIFT
|
28
|
+
const cv._InputArray.STD_VECTOR 3 << KIND_SHIFT
|
29
|
+
const cv._InputArray.STD_VECTOR_VECTOR 4 << KIND_SHIFT
|
30
|
+
const cv._InputArray.STD_VECTOR_MAT 5 << KIND_SHIFT
|
31
|
+
const cv._InputArray.EXPR 6 << KIND_SHIFT
|
32
|
+
const cv._InputArray.OPENGL_BUFFER 7 << KIND_SHIFT
|
33
|
+
const cv._InputArray.OPENGL_TEXTURE 8 << KIND_SHIFT
|
34
|
+
const cv._InputArray.GPU_MAT 9 << KIND_SHIFT
|
35
|
+
const cv._OutputArray.DEPTH_MASK_8U 1 << CV_8U
|
36
|
+
const cv._OutputArray.DEPTH_MASK_8S 1 << CV_8S
|
37
|
+
const cv._OutputArray.DEPTH_MASK_16U 1 << CV_16U
|
38
|
+
const cv._OutputArray.DEPTH_MASK_16S 1 << CV_16S
|
39
|
+
const cv._OutputArray.DEPTH_MASK_32S 1 << CV_32S
|
40
|
+
const cv._OutputArray.DEPTH_MASK_32F 1 << CV_32F
|
41
|
+
const cv._OutputArray.DEPTH_MASK_64F 1 << CV_64F
|
42
|
+
const cv._OutputArray.DEPTH_MASK_ALL (DEPTH_MASK_64F<<1)-1
|
43
|
+
const cv._OutputArray.DEPTH_MASK_ALL_BUT_8S DEPTH_MASK_ALL & ~DEPTH_MASK_8S
|
44
|
+
const cv._OutputArray.DEPTH_MASK_FLT DEPTH_MASK_32F + DEPTH_MASK_64F
|
45
|
+
const cv.Mat.MAGIC_VAL 0x42FF0000
|
46
|
+
const cv.Mat.AUTO_STEP 0
|
47
|
+
const cv.Mat.CONTINUOUS_FLAG CV_MAT_CONT_FLAG
|
48
|
+
const cv.Mat.SUBMATRIX_FLAG CV_SUBMAT_FLAG
|
49
|
+
const cv.Mat.MAGIC_MASK 0xFFFF0000
|
50
|
+
const cv.Mat.TYPE_MASK 0x00000FFF
|
51
|
+
const cv.Mat.DEPTH_MASK 7
|
52
|
+
const cv.SparseMat.MAGIC_VAL 0x42FD0000
|
53
|
+
const cv.SparseMat.MAX_DIM 32
|
54
|
+
const cv.SparseMat.HASH_SCALE 0x5bd1e995
|
55
|
+
const cv.SparseMat.HASH_BIT 0x80000000
|
56
|
+
const cv.gpu.CudaMem.ALLOC_PAGE_LOCKED 1
|
57
|
+
const cv.gpu.CudaMem.ALLOC_ZEROCOPY 2
|
58
|
+
const cv.gpu.CudaMem.ALLOC_WRITE_COMBINED 4
|
59
|
+
const cv.gpu.FEATURE_SET_COMPUTE_10 10
|
60
|
+
const cv.gpu.FEATURE_SET_COMPUTE_11 11
|
61
|
+
const cv.gpu.FEATURE_SET_COMPUTE_12 12
|
62
|
+
const cv.gpu.FEATURE_SET_COMPUTE_13 13
|
63
|
+
const cv.gpu.FEATURE_SET_COMPUTE_20 20
|
64
|
+
const cv.gpu.FEATURE_SET_COMPUTE_21 21
|
65
|
+
const cv.gpu.FEATURE_SET_COMPUTE_30 30
|
66
|
+
const cv.gpu.FEATURE_SET_COMPUTE_35 35
|
67
|
+
const cv.gpu.GLOBAL_ATOMICS FEATURE_SET_COMPUTE_11
|
68
|
+
const cv.gpu.SHARED_ATOMICS FEATURE_SET_COMPUTE_12
|
69
|
+
const cv.gpu.NATIVE_DOUBLE FEATURE_SET_COMPUTE_13
|
70
|
+
const cv.gpu.WARP_SHUFFLE_FUNCTIONS FEATURE_SET_COMPUTE_30
|
71
|
+
const cv.gpu.DYNAMIC_PARALLELISM FEATURE_SET_COMPUTE_35
|
72
|
+
const cv.gpu.cudev.EXCLUSIVE 0
|
73
|
+
const cv.gpu.cudev.INCLUSIVE 1
|
74
|
+
const cv.gpu.cudev.color_detail.yuv_shift 14
|
75
|
+
const cv.gpu.cudev.color_detail.xyz_shift 12
|
76
|
+
const cv.gpu.cudev.color_detail.R2Y 4899
|
77
|
+
const cv.gpu.cudev.color_detail.G2Y 9617
|
78
|
+
const cv.gpu.cudev.color_detail.B2Y 1868
|
79
|
+
const cv.gpu.cudev.color_detail.BLOCK_SIZE 256
|
80
|
+
const cv.gpu.cudev.color_detail.LAB_CBRT_TAB_SIZE 1024
|
81
|
+
const cv.gpu.cudev.color_detail.GAMMA_TAB_SIZE 1024
|
82
|
+
const cv.gpu.cudev.color_detail.lab_shift xyz_shift
|
83
|
+
const cv.gpu.cudev.color_detail.gamma_shift 3
|
84
|
+
const cv.gpu.cudev.color_detail.lab_shift2 (lab_shift + gamma_shift)
|
85
|
+
const cv.gpu.cudev.color_detail.LAB_CBRT_TAB_SIZE_B (256 * 3 / 2 * (1 << gamma_shift))
|
86
|
+
const cv.gpu.cudev.Emulation.smem.TAG_MASK (1U << ( (sizeof(unsigned int) << 3) - 5U)) - 1U
|
87
|
+
const cv.gpu.BORDER_REFLECT101_GPU 0
|
88
|
+
const cv.gpu.BORDER_REPLICATE_GPU 0+1
|
89
|
+
const cv.gpu.BORDER_CONSTANT_GPU 0+2
|
90
|
+
const cv.gpu.BORDER_REFLECT_GPU 0+3
|
91
|
+
const cv.gpu.BORDER_WRAP_GPU 0+4
|
92
|
+
const cv.gpu.cudev.Warp.LOG_WARP_SIZE 5
|
93
|
+
const cv.gpu.cudev.Warp.WARP_SIZE 1 << LOG_WARP_SIZE
|
94
|
+
const cv.gpu.cudev.Warp.STRIDE WARP_SIZE
|
95
|
+
const cv.Error.StsOk 0
|
96
|
+
const cv.Error.StsBackTrace -1
|
97
|
+
const cv.Error.StsError -2
|
98
|
+
const cv.Error.StsInternal -3
|
99
|
+
const cv.Error.StsNoMem -4
|
100
|
+
const cv.Error.StsBadArg -5
|
101
|
+
const cv.Error.StsBadFunc -6
|
102
|
+
const cv.Error.StsNoConv -7
|
103
|
+
const cv.Error.StsAutoTrace -8
|
104
|
+
const cv.Error.HeaderIsNull -9
|
105
|
+
const cv.Error.BadImageSize -10
|
106
|
+
const cv.Error.BadOffset -11
|
107
|
+
const cv.Error.BadDataPtr -12
|
108
|
+
const cv.Error.BadStep -13
|
109
|
+
const cv.Error.BadModelOrChSeq -14
|
110
|
+
const cv.Error.BadNumChannels -15
|
111
|
+
const cv.Error.BadNumChannel1U -16
|
112
|
+
const cv.Error.BadDepth -17
|
113
|
+
const cv.Error.BadAlphaChannel -18
|
114
|
+
const cv.Error.BadOrder -19
|
115
|
+
const cv.Error.BadOrigin -20
|
116
|
+
const cv.Error.BadAlign -21
|
117
|
+
const cv.Error.BadCallBack -22
|
118
|
+
const cv.Error.BadTileSize -23
|
119
|
+
const cv.Error.BadCOI -24
|
120
|
+
const cv.Error.BadROISize -25
|
121
|
+
const cv.Error.MaskIsTiled -26
|
122
|
+
const cv.Error.StsNullPtr -27
|
123
|
+
const cv.Error.StsVecLengthErr -28
|
124
|
+
const cv.Error.StsFilterStructContentErr -29
|
125
|
+
const cv.Error.StsKernelStructContentErr -30
|
126
|
+
const cv.Error.StsFilterOffsetErr -31
|
127
|
+
const cv.Error.StsBadSize -201
|
128
|
+
const cv.Error.StsDivByZero -202
|
129
|
+
const cv.Error.StsInplaceNotSupported -203
|
130
|
+
const cv.Error.StsObjectNotFound -204
|
131
|
+
const cv.Error.StsUnmatchedFormats -205
|
132
|
+
const cv.Error.StsBadFlag -206
|
133
|
+
const cv.Error.StsBadPoint -207
|
134
|
+
const cv.Error.StsBadMask -208
|
135
|
+
const cv.Error.StsUnmatchedSizes -209
|
136
|
+
const cv.Error.StsUnsupportedFormat -210
|
137
|
+
const cv.Error.StsOutOfRange -211
|
138
|
+
const cv.Error.StsParseError -212
|
139
|
+
const cv.Error.StsNotImplemented -213
|
140
|
+
const cv.Error.StsBadMemBlock -214
|
141
|
+
const cv.Error.StsAssert -215
|
142
|
+
const cv.Error.GpuNotSupported -216
|
143
|
+
const cv.Error.GpuApiCallError -217
|
144
|
+
const cv.Error.OpenGlNotSupported -218
|
145
|
+
const cv.Error.OpenGlApiCallError -219
|
146
|
+
const cv.Error.OpenCLApiCallError -220
|
147
|
+
const cv.DECOMP_LU 0
|
148
|
+
const cv.DECOMP_SVD 1
|
149
|
+
const cv.DECOMP_EIG 2
|
150
|
+
const cv.DECOMP_CHOLESKY 3
|
151
|
+
const cv.DECOMP_QR 4
|
152
|
+
const cv.DECOMP_NORMAL 16
|
153
|
+
const cv.NORM_INF 1
|
154
|
+
const cv.NORM_L1 2
|
155
|
+
const cv.NORM_L2 4
|
156
|
+
const cv.NORM_L2SQR 5
|
157
|
+
const cv.NORM_HAMMING 6
|
158
|
+
const cv.NORM_HAMMING2 7
|
159
|
+
const cv.NORM_TYPE_MASK 7
|
160
|
+
const cv.NORM_RELATIVE 8
|
161
|
+
const cv.NORM_MINMAX 32
|
162
|
+
const cv.CMP_EQ 0
|
163
|
+
const cv.CMP_GT 1
|
164
|
+
const cv.CMP_GE 2
|
165
|
+
const cv.CMP_LT 3
|
166
|
+
const cv.CMP_LE 4
|
167
|
+
const cv.CMP_NE 5
|
168
|
+
const cv.GEMM_1_T 1
|
169
|
+
const cv.GEMM_2_T 2
|
170
|
+
const cv.GEMM_3_T 4
|
171
|
+
const cv.DFT_INVERSE 1
|
172
|
+
const cv.DFT_SCALE 2
|
173
|
+
const cv.DFT_ROWS 4
|
174
|
+
const cv.DFT_COMPLEX_OUTPUT 16
|
175
|
+
const cv.DFT_REAL_OUTPUT 32
|
176
|
+
const cv.DCT_INVERSE DFT_INVERSE
|
177
|
+
const cv.DCT_ROWS DFT_ROWS
|
178
|
+
const cv.BORDER_CONSTANT 0
|
179
|
+
const cv.BORDER_REPLICATE 1
|
180
|
+
const cv.BORDER_REFLECT 2
|
181
|
+
const cv.BORDER_WRAP 3
|
182
|
+
const cv.BORDER_REFLECT_101 4
|
183
|
+
const cv.BORDER_TRANSPARENT 5
|
184
|
+
const cv.BORDER_REFLECT101 BORDER_REFLECT_101
|
185
|
+
const cv.BORDER_DEFAULT BORDER_REFLECT_101
|
186
|
+
const cv.BORDER_ISOLATED 16
|
187
|
+
cv.cubeRoot float
|
188
|
+
float val
|
189
|
+
cv.fastAtan2 float
|
190
|
+
float y
|
191
|
+
float x
|
192
|
+
cv.getBuildInformation String
|
193
|
+
cv.getTickCount int64
|
194
|
+
cv.getTickFrequency double
|
195
|
+
cv.getCPUTickCount int64
|
196
|
+
cv.checkHardwareSupport bool
|
197
|
+
int feature
|
198
|
+
cv.getNumberOfCPUs int
|
199
|
+
cv.setUseOptimized void
|
200
|
+
bool onoff
|
201
|
+
cv.useOptimized bool
|
202
|
+
const cv.ogl.Buffer.ARRAY_BUFFER 0x8892
|
203
|
+
const cv.ogl.Buffer.ELEMENT_ARRAY_BUFFER 0x8893
|
204
|
+
const cv.ogl.Buffer.PIXEL_PACK_BUFFER 0x88EB
|
205
|
+
const cv.ogl.Buffer.PIXEL_UNPACK_BUFFER 0x88EC
|
206
|
+
const cv.ogl.Buffer.READ_ONLY 0x88B8
|
207
|
+
const cv.ogl.Buffer.WRITE_ONLY 0x88B9
|
208
|
+
const cv.ogl.Buffer.READ_WRITE 0x88BA
|
209
|
+
const cv.ogl.Texture2D.NONE 0
|
210
|
+
const cv.ogl.Texture2D.DEPTH_COMPONENT 0x1902
|
211
|
+
const cv.ogl.Texture2D.RGB 0x1907
|
212
|
+
const cv.ogl.Texture2D.RGBA 0x1908
|
213
|
+
const cv.ogl.POINTS 0x0000
|
214
|
+
const cv.ogl.LINES 0x0001
|
215
|
+
const cv.ogl.LINE_LOOP 0x0002
|
216
|
+
const cv.ogl.LINE_STRIP 0x0003
|
217
|
+
const cv.ogl.TRIANGLES 0x0004
|
218
|
+
const cv.ogl.TRIANGLE_STRIP 0x0005
|
219
|
+
const cv.ogl.TRIANGLE_FAN 0x0006
|
220
|
+
const cv.ogl.QUADS 0x0007
|
221
|
+
const cv.ogl.QUAD_STRIP 0x0008
|
222
|
+
const cv.ogl.POLYGON 0x0009
|
223
|
+
class cv.KeyPoint /Simple
|
224
|
+
Point2f pt /RW
|
225
|
+
float size /RW
|
226
|
+
float angle /RW
|
227
|
+
float response /RW
|
228
|
+
int octave /RW
|
229
|
+
int class_id /RW
|
230
|
+
cv.KeyPoint.KeyPoint
|
231
|
+
cv.KeyPoint.KeyPoint
|
232
|
+
float x
|
233
|
+
float y
|
234
|
+
float _size
|
235
|
+
float _angle -1
|
236
|
+
float _response 0
|
237
|
+
int _octave 0
|
238
|
+
int _class_id -1
|
239
|
+
class cv.DMatch /Simple
|
240
|
+
int queryIdx /RW
|
241
|
+
int trainIdx /RW
|
242
|
+
int imgIdx /RW
|
243
|
+
float distance /RW
|
244
|
+
cv.DMatch.DMatch
|
245
|
+
cv.DMatch.DMatch
|
246
|
+
int _queryIdx
|
247
|
+
int _trainIdx
|
248
|
+
float _distance
|
249
|
+
cv.DMatch.DMatch
|
250
|
+
int _queryIdx
|
251
|
+
int _trainIdx
|
252
|
+
int _imgIdx
|
253
|
+
float _distance
|
254
|
+
const cv.TermCriteria.COUNT 1
|
255
|
+
const cv.TermCriteria.MAX_ITER COUNT
|
256
|
+
const cv.TermCriteria.EPS 2
|
257
|
+
class cv.Moments /Map
|
258
|
+
double m00 /RW
|
259
|
+
double m10 /RW
|
260
|
+
double m01 /RW
|
261
|
+
double m20 /RW
|
262
|
+
double m11 /RW
|
263
|
+
double m02 /RW
|
264
|
+
double m30 /RW
|
265
|
+
double m21 /RW
|
266
|
+
double m12 /RW
|
267
|
+
double m03 /RW
|
268
|
+
double mu20 /RW
|
269
|
+
double mu11 /RW
|
270
|
+
double mu02 /RW
|
271
|
+
double mu30 /RW
|
272
|
+
double mu21 /RW
|
273
|
+
double mu12 /RW
|
274
|
+
double mu03 /RW
|
275
|
+
double nu20 /RW
|
276
|
+
double nu11 /RW
|
277
|
+
double nu02 /RW
|
278
|
+
double nu30 /RW
|
279
|
+
double nu21 /RW
|
280
|
+
double nu12 /RW
|
281
|
+
double nu03 /RW
|
282
|
+
const cv.ogl.Buffer.ARRAY_BUFFER 0x8892
|
283
|
+
const cv.ogl.Buffer.ELEMENT_ARRAY_BUFFER 0x8893
|
284
|
+
const cv.ogl.Buffer.PIXEL_PACK_BUFFER 0x88EB
|
285
|
+
const cv.ogl.Buffer.PIXEL_UNPACK_BUFFER 0x88EC
|
286
|
+
const cv.ogl.Buffer.READ_ONLY 0x88B8
|
287
|
+
const cv.ogl.Buffer.WRITE_ONLY 0x88B9
|
288
|
+
const cv.ogl.Buffer.READ_WRITE 0x88BA
|
289
|
+
const cv.ogl.Texture2D.NONE 0
|
290
|
+
const cv.ogl.Texture2D.DEPTH_COMPONENT 0x1902
|
291
|
+
const cv.ogl.Texture2D.RGB 0x1907
|
292
|
+
const cv.ogl.Texture2D.RGBA 0x1908
|
293
|
+
const cv.ogl.POINTS 0x0000
|
294
|
+
const cv.ogl.LINES 0x0001
|
295
|
+
const cv.ogl.LINE_LOOP 0x0002
|
296
|
+
const cv.ogl.LINE_STRIP 0x0003
|
297
|
+
const cv.ogl.TRIANGLES 0x0004
|
298
|
+
const cv.ogl.TRIANGLE_STRIP 0x0005
|
299
|
+
const cv.ogl.TRIANGLE_FAN 0x0006
|
300
|
+
const cv.ogl.QUADS 0x0007
|
301
|
+
const cv.ogl.QUAD_STRIP 0x0008
|
302
|
+
const cv.ogl.POLYGON 0x0009
|
303
|
+
class cv.FileStorage
|
304
|
+
const cv.FileStorage.READ 0
|
305
|
+
const cv.FileStorage.WRITE 1
|
306
|
+
const cv.FileStorage.APPEND 2
|
307
|
+
const cv.FileStorage.MEMORY 4
|
308
|
+
const cv.FileStorage.FORMAT_MASK (7<<3)
|
309
|
+
const cv.FileStorage.FORMAT_AUTO 0
|
310
|
+
const cv.FileStorage.FORMAT_XML (1<<3)
|
311
|
+
const cv.FileStorage.FORMAT_YAML (2<<3)
|
312
|
+
const cv.FileStorage.UNDEFINED 0
|
313
|
+
const cv.FileStorage.VALUE_EXPECTED 1
|
314
|
+
const cv.FileStorage.NAME_EXPECTED 2
|
315
|
+
const cv.FileStorage.INSIDE_MAP 4
|
316
|
+
cv.FileStorage.FileStorage
|
317
|
+
cv.FileStorage.FileStorage
|
318
|
+
String source
|
319
|
+
int flags
|
320
|
+
String encoding String()
|
321
|
+
cv.FileStorage.open bool
|
322
|
+
String filename
|
323
|
+
int flags
|
324
|
+
String encoding String()
|
325
|
+
cv.FileStorage.isOpened bool
|
326
|
+
cv.FileStorage.release void
|
327
|
+
cv.FileStorage.releaseAndGetString String
|
328
|
+
cv.FileStorage.getFirstTopLevelNode FileNode
|
329
|
+
cv.FileStorage.root FileNode
|
330
|
+
int streamidx 0
|
331
|
+
cv.FileStorage.operator[] FileNode
|
332
|
+
c_string nodename
|
333
|
+
class cv.FileNode /Simple
|
334
|
+
const cv.FileNode.NONE 0
|
335
|
+
const cv.FileNode.INT 1
|
336
|
+
const cv.FileNode.REAL 2
|
337
|
+
const cv.FileNode.FLOAT REAL
|
338
|
+
const cv.FileNode.STR 3
|
339
|
+
const cv.FileNode.STRING STR
|
340
|
+
const cv.FileNode.REF 4
|
341
|
+
const cv.FileNode.SEQ 5
|
342
|
+
const cv.FileNode.MAP 6
|
343
|
+
const cv.FileNode.TYPE_MASK 7
|
344
|
+
const cv.FileNode.FLOW 8
|
345
|
+
const cv.FileNode.USER 16
|
346
|
+
const cv.FileNode.EMPTY 32
|
347
|
+
const cv.FileNode.NAMED 64
|
348
|
+
cv.FileNode.FileNode
|
349
|
+
cv.FileNode.operator[] FileNode
|
350
|
+
c_string nodename
|
351
|
+
cv.FileNode.operator[] FileNode
|
352
|
+
int i
|
353
|
+
cv.FileNode.type int
|
354
|
+
cv.FileNode.empty bool
|
355
|
+
cv.FileNode.isNone bool
|
356
|
+
cv.FileNode.isSeq bool
|
357
|
+
cv.FileNode.isMap bool
|
358
|
+
cv.FileNode.isInt bool
|
359
|
+
cv.FileNode.isReal bool
|
360
|
+
cv.FileNode.isString bool
|
361
|
+
cv.FileNode.isNamed bool
|
362
|
+
cv.FileNode.name String
|
363
|
+
cv.FileNode.size size_t
|
364
|
+
const CvDrawShape.RECT 0
|
365
|
+
const CvDrawShape.ELLIPSE 1
|
366
|
+
const CV_MAT32F CV_32FC1
|
367
|
+
const CV_MAT3x1_32F CV_32FC1
|
368
|
+
const CV_MAT4x1_32F CV_32FC1
|
369
|
+
const CV_MAT3x3_32F CV_32FC1
|
370
|
+
const CV_MAT4x4_32F CV_32FC1
|
371
|
+
const CV_MAT64D CV_64FC1
|
372
|
+
const CV_MAT3x1_64D CV_64FC1
|
373
|
+
const CV_MAT4x1_64D CV_64FC1
|
374
|
+
const CV_MAT3x3_64D CV_64FC1
|
375
|
+
const CV_MAT4x4_64D CV_64FC1
|
376
|
+
const IPL_GAUSSIAN_5x5 7
|
377
|
+
const CV_SHIFT_NONE 2
|
378
|
+
const CV_SHIFT_LEFT 1
|
379
|
+
const CV_SHIFT_RIGHT 3
|
380
|
+
const CV_SHIFT_UP 6
|
381
|
+
const CV_SHIFT_DOWN 10
|
382
|
+
const CV_SHIFT_LU 5
|
383
|
+
const CV_SHIFT_RU 7
|
384
|
+
const CV_SHIFT_LD 9
|
385
|
+
const CV_SHIFT_RD 11
|
386
|
+
const CV_RODRIGUES_M2V 0
|
387
|
+
const CV_RODRIGUES_V2M 1
|
388
|
+
class cv.BackgroundSubtractor : cv::Algorithm
|
389
|
+
cv.BackgroundSubtractor.apply void
|
390
|
+
Mat image
|
391
|
+
Mat fgmask /O
|
392
|
+
double learningRate -1
|
393
|
+
class cv.BackgroundSubtractorMOG : cv::BackgroundSubtractor
|
394
|
+
cv.BackgroundSubtractorMOG.setHistory void
|
395
|
+
int nframes
|
396
|
+
cv.BackgroundSubtractorMOG.setNMixtures void
|
397
|
+
int nmix
|
398
|
+
cv.BackgroundSubtractorMOG.setBackgroundRatio void
|
399
|
+
double backgroundRatio
|
400
|
+
cv.BackgroundSubtractorMOG.setNoiseSigma void
|
401
|
+
double noiseSigma
|
402
|
+
cv.createBackgroundSubtractorMOG Ptr_BackgroundSubtractorMOG
|
403
|
+
int history 200
|
404
|
+
int nmixtures 5
|
405
|
+
double backgroundRatio 0.7
|
406
|
+
double noiseSigma 0
|
407
|
+
class cv.BackgroundSubtractorMOG2 : cv::BackgroundSubtractor
|
408
|
+
cv.BackgroundSubtractorMOG2.setHistory void
|
409
|
+
int history
|
410
|
+
cv.BackgroundSubtractorMOG2.setNMixtures void
|
411
|
+
int nmixtures
|
412
|
+
cv.BackgroundSubtractorMOG2.setBackgroundRatio void
|
413
|
+
double ratio
|
414
|
+
cv.BackgroundSubtractorMOG2.setVarThreshold void
|
415
|
+
double varThreshold
|
416
|
+
cv.BackgroundSubtractorMOG2.setVarThresholdGen void
|
417
|
+
double varThresholdGen
|
418
|
+
cv.BackgroundSubtractorMOG2.setVarInit void
|
419
|
+
double varInit
|
420
|
+
cv.BackgroundSubtractorMOG2.setVarMin void
|
421
|
+
double varMin
|
422
|
+
cv.BackgroundSubtractorMOG2.setVarMax void
|
423
|
+
double varMax
|
424
|
+
cv.BackgroundSubtractorMOG2.setComplexityReductionThreshold void
|
425
|
+
double ct
|
426
|
+
cv.BackgroundSubtractorMOG2.setDetectShadows void
|
427
|
+
bool detectShadows
|
428
|
+
cv.BackgroundSubtractorMOG2.setShadowValue void
|
429
|
+
int value
|
430
|
+
cv.BackgroundSubtractorMOG2.setShadowThreshold void
|
431
|
+
double threshold
|
432
|
+
cv.createBackgroundSubtractorMOG2 Ptr_BackgroundSubtractorMOG2
|
433
|
+
int history 500
|
434
|
+
double varThreshold 16
|
435
|
+
bool detectShadows true
|
436
|
+
class cv.BackgroundSubtractorGMG : cv::BackgroundSubtractor
|
437
|
+
cv.BackgroundSubtractorGMG.setMaxFeatures void
|
438
|
+
int maxFeatures
|
439
|
+
cv.BackgroundSubtractorGMG.setDefaultLearningRate void
|
440
|
+
double lr
|
441
|
+
cv.BackgroundSubtractorGMG.setNumFrames void
|
442
|
+
int nframes
|
443
|
+
cv.BackgroundSubtractorGMG.setQuantizationLevels void
|
444
|
+
int nlevels
|
445
|
+
cv.BackgroundSubtractorGMG.setBackgroundPrior void
|
446
|
+
double bgprior
|
447
|
+
cv.BackgroundSubtractorGMG.setSmoothingRadius void
|
448
|
+
int radius
|
449
|
+
cv.BackgroundSubtractorGMG.setDecisionThreshold void
|
450
|
+
double thresh
|
451
|
+
cv.BackgroundSubtractorGMG.setUpdateBackgroundModel void
|
452
|
+
bool update
|
453
|
+
cv.BackgroundSubtractorGMG.setMinVal void
|
454
|
+
double val
|
455
|
+
cv.BackgroundSubtractorGMG.setMaxVal void
|
456
|
+
double val
|
457
|
+
cv.createBackgroundSubtractorGMG Ptr_BackgroundSubtractorGMG
|
458
|
+
int initializationFrames 120
|
459
|
+
double decisionThreshold 0.8
|
460
|
+
const cv.OPTFLOW_USE_INITIAL_FLOW 4
|
461
|
+
const cv.OPTFLOW_LK_GET_MIN_EIGENVALS 8
|
462
|
+
const cv.OPTFLOW_FARNEBACK_GAUSSIAN 256
|
463
|
+
const cv.MOTION_TRANSLATION 0
|
464
|
+
const cv.MOTION_EUCLIDEAN 1
|
465
|
+
const cv.MOTION_AFFINE 2
|
466
|
+
const cv.MOTION_HOMOGRAPHY 3
|
467
|
+
cv.updateMotionHistory void
|
468
|
+
Mat silhouette
|
469
|
+
Mat mhi /IO
|
470
|
+
double timestamp
|
471
|
+
double duration
|
472
|
+
cv.calcMotionGradient void
|
473
|
+
Mat mhi
|
474
|
+
Mat mask /O
|
475
|
+
Mat orientation /O
|
476
|
+
double delta1
|
477
|
+
double delta2
|
478
|
+
int apertureSize 3
|
479
|
+
cv.calcGlobalOrientation double
|
480
|
+
Mat orientation
|
481
|
+
Mat mask
|
482
|
+
Mat mhi
|
483
|
+
double timestamp
|
484
|
+
double duration
|
485
|
+
cv.segmentMotion void
|
486
|
+
Mat mhi
|
487
|
+
Mat segmask /O
|
488
|
+
vector_Rect boundingRects /O
|
489
|
+
double timestamp
|
490
|
+
double segThresh
|
491
|
+
cv.CamShift RotatedRect
|
492
|
+
Mat probImage
|
493
|
+
Rect window /IO
|
494
|
+
TermCriteria criteria
|
495
|
+
cv.meanShift int
|
496
|
+
Mat probImage
|
497
|
+
Rect window /IO
|
498
|
+
TermCriteria criteria
|
499
|
+
cv.buildOpticalFlowPyramid int
|
500
|
+
Mat img
|
501
|
+
vector_Mat pyramid /O
|
502
|
+
Size winSize
|
503
|
+
int maxLevel
|
504
|
+
bool withDerivatives true
|
505
|
+
int pyrBorder BORDER_REFLECT_101
|
506
|
+
int derivBorder BORDER_CONSTANT
|
507
|
+
bool tryReuseInputImage true
|
508
|
+
cv.calcOpticalFlowPyrLK void
|
509
|
+
Mat prevImg
|
510
|
+
Mat nextImg
|
511
|
+
Mat prevPts
|
512
|
+
Mat nextPts /IO
|
513
|
+
Mat status /O
|
514
|
+
Mat err /O
|
515
|
+
Size winSize Size(21,21)
|
516
|
+
int maxLevel 3
|
517
|
+
TermCriteria criteria TermCriteria(TermCriteria::COUNT+TermCriteria::EPS, 30, 0.01)
|
518
|
+
int flags 0
|
519
|
+
double minEigThreshold 1e-4
|
520
|
+
cv.calcOpticalFlowFarneback void
|
521
|
+
Mat prev
|
522
|
+
Mat next
|
523
|
+
Mat flow /IO
|
524
|
+
double pyr_scale
|
525
|
+
int levels
|
526
|
+
int winsize
|
527
|
+
int iterations
|
528
|
+
int poly_n
|
529
|
+
double poly_sigma
|
530
|
+
int flags
|
531
|
+
cv.estimateRigidTransform Mat
|
532
|
+
Mat src
|
533
|
+
Mat dst
|
534
|
+
bool fullAffine
|
535
|
+
cv.findTransformECC double
|
536
|
+
Mat templateImage
|
537
|
+
Mat inputImage
|
538
|
+
Mat warpMatrix /IO
|
539
|
+
int motionType MOTION_AFFINE
|
540
|
+
TermCriteria criteria TermCriteria(TermCriteria::COUNT+TermCriteria::EPS, 50, 0.001)
|
541
|
+
cv.calcOpticalFlowSF void
|
542
|
+
Mat from
|
543
|
+
Mat to
|
544
|
+
Mat flow /O
|
545
|
+
int layers
|
546
|
+
int averaging_block_size
|
547
|
+
int max_flow
|
548
|
+
cv.calcOpticalFlowSF void
|
549
|
+
Mat from
|
550
|
+
Mat to
|
551
|
+
Mat flow /O
|
552
|
+
int layers
|
553
|
+
int averaging_block_size
|
554
|
+
int max_flow
|
555
|
+
double sigma_dist
|
556
|
+
double sigma_color
|
557
|
+
int postprocess_window
|
558
|
+
double sigma_dist_fix
|
559
|
+
double sigma_color_fix
|
560
|
+
double occ_thr
|
561
|
+
int upscale_averaging_radius
|
562
|
+
double upscale_sigma_dist
|
563
|
+
double upscale_sigma_color
|
564
|
+
double speed_up_thr
|
565
|
+
class cv.KalmanFilter
|
566
|
+
cv.KalmanFilter.KalmanFilter
|
567
|
+
cv.KalmanFilter.KalmanFilter
|
568
|
+
int dynamParams
|
569
|
+
int measureParams
|
570
|
+
int controlParams 0
|
571
|
+
int type CV_32F
|
572
|
+
cv.KalmanFilter.predict Mat
|
573
|
+
Mat control Mat()
|
574
|
+
cv.KalmanFilter.correct Mat
|
575
|
+
Mat measurement
|
576
|
+
const cv.SelfSimDescriptor.DEFAULT_SMALL_SIZE 5
|
577
|
+
const cv.SelfSimDescriptor.DEFAULT_LARGE_SIZE 41
|
578
|
+
const cv.SelfSimDescriptor.DEFAULT_NUM_ANGLES 20
|
579
|
+
const cv.SelfSimDescriptor.DEFAULT_START_DISTANCE_BUCKET 3
|
580
|
+
const cv.SelfSimDescriptor.DEFAULT_NUM_DISTANCE_BUCKETS 7
|
581
|
+
cv.chamerMatching int
|
582
|
+
Mat img
|
583
|
+
Mat templ
|
584
|
+
vector_vector_Point results /O
|
585
|
+
vector_float cost /O
|
586
|
+
double templScale 1
|
587
|
+
int maxMatches 20
|
588
|
+
double minMatchDistance 1.0
|
589
|
+
int padX 3
|
590
|
+
int padY 3
|
591
|
+
int scales 5
|
592
|
+
double minScale 0.6
|
593
|
+
double maxScale 1.6
|
594
|
+
double orientationWeight 0.5
|
595
|
+
double truncate 20
|
596
|
+
class cv.StereoVar
|
597
|
+
int levels /RW
|
598
|
+
double pyrScale /RW
|
599
|
+
int nIt /RW
|
600
|
+
int minDisp /RW
|
601
|
+
int maxDisp /RW
|
602
|
+
int poly_n /RW
|
603
|
+
double poly_sigma /RW
|
604
|
+
float fi /RW
|
605
|
+
float lambda /RW
|
606
|
+
int penalization /RW
|
607
|
+
int cycle /RW
|
608
|
+
int flags /RW
|
609
|
+
const cv.StereoVar.USE_INITIAL_DISPARITY 1
|
610
|
+
const cv.StereoVar.USE_EQUALIZE_HIST 2
|
611
|
+
const cv.StereoVar.USE_SMART_ID 4
|
612
|
+
const cv.StereoVar.USE_AUTO_PARAMS 8
|
613
|
+
const cv.StereoVar.USE_MEDIAN_FILTERING 16
|
614
|
+
const cv.StereoVar.CYCLE_O 0
|
615
|
+
const cv.StereoVar.CYCLE_V 1
|
616
|
+
const cv.StereoVar.PENALIZATION_TICHONOV 0
|
617
|
+
const cv.StereoVar.PENALIZATION_CHARBONNIER 1
|
618
|
+
const cv.StereoVar.PENALIZATION_PERONA_MALIK 2
|
619
|
+
cv.StereoVar.StereoVar
|
620
|
+
cv.StereoVar.StereoVar
|
621
|
+
int levels
|
622
|
+
double pyrScale
|
623
|
+
int nIt
|
624
|
+
int minDisp
|
625
|
+
int maxDisp
|
626
|
+
int poly_n
|
627
|
+
double poly_sigma
|
628
|
+
float fi
|
629
|
+
float lambda
|
630
|
+
int penalization
|
631
|
+
int cycle
|
632
|
+
int flags
|
633
|
+
cv.StereoVar.operator () void =compute
|
634
|
+
Mat left
|
635
|
+
Mat right
|
636
|
+
Mat disp /O
|
637
|
+
const cv.ROTATION 1
|
638
|
+
const cv.TRANSLATION 2
|
639
|
+
const cv.RIGID_BODY_MOTION 4
|
640
|
+
class cv.FaceRecognizer : cv::Algorithm
|
641
|
+
cv.FaceRecognizer.train void
|
642
|
+
vector_Mat src
|
643
|
+
Mat labels
|
644
|
+
cv.FaceRecognizer.update void
|
645
|
+
vector_Mat src
|
646
|
+
Mat labels
|
647
|
+
cv.FaceRecognizer.predict void
|
648
|
+
Mat src
|
649
|
+
int label /O
|
650
|
+
double confidence /O
|
651
|
+
cv.FaceRecognizer.save void
|
652
|
+
String filename
|
653
|
+
cv.FaceRecognizer.load void
|
654
|
+
String filename
|
655
|
+
cv.createEigenFaceRecognizer Ptr_FaceRecognizer
|
656
|
+
int num_components 0
|
657
|
+
double threshold DBL_MAX
|
658
|
+
cv.createFisherFaceRecognizer Ptr_FaceRecognizer
|
659
|
+
int num_components 0
|
660
|
+
double threshold DBL_MAX
|
661
|
+
cv.createLBPHFaceRecognizer Ptr_FaceRecognizer
|
662
|
+
int radius 1
|
663
|
+
int neighbors 8
|
664
|
+
int grid_x 8
|
665
|
+
int grid_y 8
|
666
|
+
double threshold DBL_MAX
|
667
|
+
const cv.COLORMAP_AUTUMN 0
|
668
|
+
const cv.COLORMAP_BONE 1
|
669
|
+
const cv.COLORMAP_JET 2
|
670
|
+
const cv.COLORMAP_WINTER 3
|
671
|
+
const cv.COLORMAP_RAINBOW 4
|
672
|
+
const cv.COLORMAP_OCEAN 5
|
673
|
+
const cv.COLORMAP_SUMMER 6
|
674
|
+
const cv.COLORMAP_SPRING 7
|
675
|
+
const cv.COLORMAP_COOL 8
|
676
|
+
const cv.COLORMAP_HSV 9
|
677
|
+
const cv.COLORMAP_PINK 10
|
678
|
+
const cv.COLORMAP_HOT 11
|
679
|
+
cv.applyColorMap void
|
680
|
+
Mat src
|
681
|
+
Mat dst /O
|
682
|
+
int colormap
|
683
|
+
const cv.videostab.MM_TRANSLATION 0
|
684
|
+
const cv.videostab.MM_TRANSLATION_AND_SCALE 1
|
685
|
+
const cv.videostab.MM_ROTATION 2
|
686
|
+
const cv.videostab.MM_RIGID 3
|
687
|
+
const cv.videostab.MM_SIMILARITY 4
|
688
|
+
const cv.videostab.MM_AFFINE 5
|
689
|
+
const cv.videostab.MM_HOMOGRAPHY 6
|
690
|
+
const cv.videostab.MM_UNKNOWN 7
|
691
|
+
const cv.SORT_EVERY_ROW 0
|
692
|
+
const cv.SORT_EVERY_COLUMN 1
|
693
|
+
const cv.SORT_ASCENDING 0
|
694
|
+
const cv.SORT_DESCENDING 16
|
695
|
+
const cv.COVAR_SCRAMBLED 0
|
696
|
+
const cv.COVAR_NORMAL 1
|
697
|
+
const cv.COVAR_USE_AVG 2
|
698
|
+
const cv.COVAR_SCALE 4
|
699
|
+
const cv.COVAR_ROWS 8
|
700
|
+
const cv.COVAR_COLS 16
|
701
|
+
const cv.KMEANS_RANDOM_CENTERS 0
|
702
|
+
const cv.KMEANS_PP_CENTERS 2
|
703
|
+
const cv.KMEANS_USE_INITIAL_LABELS 1
|
704
|
+
const cv.FILLED -1
|
705
|
+
const cv.LINE_4 4
|
706
|
+
const cv.LINE_8 8
|
707
|
+
const cv.LINE_AA 16
|
708
|
+
const cv.FONT_HERSHEY_SIMPLEX 0
|
709
|
+
const cv.FONT_HERSHEY_PLAIN 1
|
710
|
+
const cv.FONT_HERSHEY_DUPLEX 2
|
711
|
+
const cv.FONT_HERSHEY_COMPLEX 3
|
712
|
+
const cv.FONT_HERSHEY_TRIPLEX 4
|
713
|
+
const cv.FONT_HERSHEY_COMPLEX_SMALL 5
|
714
|
+
const cv.FONT_HERSHEY_SCRIPT_SIMPLEX 6
|
715
|
+
const cv.FONT_HERSHEY_SCRIPT_COMPLEX 7
|
716
|
+
const cv.FONT_ITALIC 16
|
717
|
+
const cv.REDUCE_SUM 0
|
718
|
+
const cv.REDUCE_AVG 1
|
719
|
+
const cv.REDUCE_MAX 2
|
720
|
+
const cv.REDUCE_MIN 3
|
721
|
+
cv.borderInterpolate int
|
722
|
+
int p
|
723
|
+
int len
|
724
|
+
int borderType
|
725
|
+
cv.copyMakeBorder void
|
726
|
+
Mat src
|
727
|
+
Mat dst /O
|
728
|
+
int top
|
729
|
+
int bottom
|
730
|
+
int left
|
731
|
+
int right
|
732
|
+
int borderType
|
733
|
+
Scalar value Scalar()
|
734
|
+
cv.add void
|
735
|
+
Mat src1
|
736
|
+
Mat src2
|
737
|
+
Mat dst /O
|
738
|
+
Mat mask Mat()
|
739
|
+
int dtype -1
|
740
|
+
cv.subtract void
|
741
|
+
Mat src1
|
742
|
+
Mat src2
|
743
|
+
Mat dst /O
|
744
|
+
Mat mask Mat()
|
745
|
+
int dtype -1
|
746
|
+
cv.multiply void
|
747
|
+
Mat src1
|
748
|
+
Mat src2
|
749
|
+
Mat dst /O
|
750
|
+
double scale 1
|
751
|
+
int dtype -1
|
752
|
+
cv.divide void
|
753
|
+
Mat src1
|
754
|
+
Mat src2
|
755
|
+
Mat dst /O
|
756
|
+
double scale 1
|
757
|
+
int dtype -1
|
758
|
+
cv.divide void
|
759
|
+
double scale
|
760
|
+
Mat src2
|
761
|
+
Mat dst /O
|
762
|
+
int dtype -1
|
763
|
+
cv.scaleAdd void
|
764
|
+
Mat src1
|
765
|
+
double alpha
|
766
|
+
Mat src2
|
767
|
+
Mat dst /O
|
768
|
+
cv.addWeighted void
|
769
|
+
Mat src1
|
770
|
+
double alpha
|
771
|
+
Mat src2
|
772
|
+
double beta
|
773
|
+
double gamma
|
774
|
+
Mat dst /O
|
775
|
+
int dtype -1
|
776
|
+
cv.convertScaleAbs void
|
777
|
+
Mat src
|
778
|
+
Mat dst /O
|
779
|
+
double alpha 1
|
780
|
+
double beta 0
|
781
|
+
cv.LUT void
|
782
|
+
Mat src
|
783
|
+
Mat lut
|
784
|
+
Mat dst /O
|
785
|
+
cv.sum Scalar =sumElems
|
786
|
+
Mat src
|
787
|
+
cv.countNonZero int
|
788
|
+
Mat src
|
789
|
+
cv.findNonZero void
|
790
|
+
Mat src
|
791
|
+
Mat idx /O
|
792
|
+
cv.mean Scalar
|
793
|
+
Mat src
|
794
|
+
Mat mask Mat()
|
795
|
+
cv.meanStdDev void
|
796
|
+
Mat src
|
797
|
+
Mat mean /O
|
798
|
+
Mat stddev /O
|
799
|
+
Mat mask Mat()
|
800
|
+
cv.norm double
|
801
|
+
Mat src1
|
802
|
+
int normType NORM_L2
|
803
|
+
Mat mask Mat()
|
804
|
+
cv.norm double
|
805
|
+
Mat src1
|
806
|
+
Mat src2
|
807
|
+
int normType NORM_L2
|
808
|
+
Mat mask Mat()
|
809
|
+
cv.PSNR double
|
810
|
+
Mat src1
|
811
|
+
Mat src2
|
812
|
+
cv.batchDistance void
|
813
|
+
Mat src1
|
814
|
+
Mat src2
|
815
|
+
Mat dist /O
|
816
|
+
int dtype
|
817
|
+
Mat nidx /O
|
818
|
+
int normType NORM_L2
|
819
|
+
int K 0
|
820
|
+
Mat mask Mat()
|
821
|
+
int update 0
|
822
|
+
bool crosscheck false
|
823
|
+
cv.normalize void
|
824
|
+
Mat src
|
825
|
+
Mat dst /O
|
826
|
+
double alpha 1
|
827
|
+
double beta 0
|
828
|
+
int norm_type NORM_L2
|
829
|
+
int dtype -1
|
830
|
+
Mat mask Mat()
|
831
|
+
cv.minMaxLoc void
|
832
|
+
Mat src
|
833
|
+
double* minVal /O
|
834
|
+
double* maxVal 0 /O
|
835
|
+
Point* minLoc 0 /O
|
836
|
+
Point* maxLoc 0 /O
|
837
|
+
Mat mask Mat()
|
838
|
+
cv.reduce void
|
839
|
+
Mat src
|
840
|
+
Mat dst /O
|
841
|
+
int dim
|
842
|
+
int rtype
|
843
|
+
int dtype -1
|
844
|
+
cv.merge void
|
845
|
+
vector_Mat mv
|
846
|
+
Mat dst /O
|
847
|
+
cv.split void
|
848
|
+
Mat m
|
849
|
+
vector_Mat mv /O
|
850
|
+
cv.mixChannels void
|
851
|
+
vector_Mat src
|
852
|
+
vector_Mat dst /IO
|
853
|
+
vector_int fromTo
|
854
|
+
cv.extractChannel void
|
855
|
+
Mat src
|
856
|
+
Mat dst /O
|
857
|
+
int coi
|
858
|
+
cv.insertChannel void
|
859
|
+
Mat src
|
860
|
+
Mat dst /IO
|
861
|
+
int coi
|
862
|
+
cv.flip void
|
863
|
+
Mat src
|
864
|
+
Mat dst /O
|
865
|
+
int flipCode
|
866
|
+
cv.repeat void
|
867
|
+
Mat src
|
868
|
+
int ny
|
869
|
+
int nx
|
870
|
+
Mat dst /O
|
871
|
+
cv.hconcat void
|
872
|
+
vector_Mat src
|
873
|
+
Mat dst /O
|
874
|
+
cv.vconcat void
|
875
|
+
vector_Mat src
|
876
|
+
Mat dst /O
|
877
|
+
cv.bitwise_and void
|
878
|
+
Mat src1
|
879
|
+
Mat src2
|
880
|
+
Mat dst /O
|
881
|
+
Mat mask Mat()
|
882
|
+
cv.bitwise_or void
|
883
|
+
Mat src1
|
884
|
+
Mat src2
|
885
|
+
Mat dst /O
|
886
|
+
Mat mask Mat()
|
887
|
+
cv.bitwise_xor void
|
888
|
+
Mat src1
|
889
|
+
Mat src2
|
890
|
+
Mat dst /O
|
891
|
+
Mat mask Mat()
|
892
|
+
cv.bitwise_not void
|
893
|
+
Mat src
|
894
|
+
Mat dst /O
|
895
|
+
Mat mask Mat()
|
896
|
+
cv.absdiff void
|
897
|
+
Mat src1
|
898
|
+
Mat src2
|
899
|
+
Mat dst /O
|
900
|
+
cv.inRange void
|
901
|
+
Mat src
|
902
|
+
Mat lowerb
|
903
|
+
Mat upperb
|
904
|
+
Mat dst /O
|
905
|
+
cv.compare void
|
906
|
+
Mat src1
|
907
|
+
Mat src2
|
908
|
+
Mat dst /O
|
909
|
+
int cmpop
|
910
|
+
cv.min void
|
911
|
+
Mat src1
|
912
|
+
Mat src2
|
913
|
+
Mat dst /O
|
914
|
+
cv.max void
|
915
|
+
Mat src1
|
916
|
+
Mat src2
|
917
|
+
Mat dst /O
|
918
|
+
cv.sqrt void
|
919
|
+
Mat src
|
920
|
+
Mat dst /O
|
921
|
+
cv.pow void
|
922
|
+
Mat src
|
923
|
+
double power
|
924
|
+
Mat dst /O
|
925
|
+
cv.exp void
|
926
|
+
Mat src
|
927
|
+
Mat dst /O
|
928
|
+
cv.log void
|
929
|
+
Mat src
|
930
|
+
Mat dst /O
|
931
|
+
cv.polarToCart void
|
932
|
+
Mat magnitude
|
933
|
+
Mat angle
|
934
|
+
Mat x /O
|
935
|
+
Mat y /O
|
936
|
+
bool angleInDegrees false
|
937
|
+
cv.cartToPolar void
|
938
|
+
Mat x
|
939
|
+
Mat y
|
940
|
+
Mat magnitude /O
|
941
|
+
Mat angle /O
|
942
|
+
bool angleInDegrees false
|
943
|
+
cv.phase void
|
944
|
+
Mat x
|
945
|
+
Mat y
|
946
|
+
Mat angle /O
|
947
|
+
bool angleInDegrees false
|
948
|
+
cv.magnitude void
|
949
|
+
Mat x
|
950
|
+
Mat y
|
951
|
+
Mat magnitude /O
|
952
|
+
cv.checkRange bool
|
953
|
+
Mat a
|
954
|
+
bool quiet true
|
955
|
+
Point* pos 0 /O
|
956
|
+
double minVal -DBL_MAX
|
957
|
+
double maxVal DBL_MAX
|
958
|
+
cv.patchNaNs void
|
959
|
+
Mat a /IO
|
960
|
+
double val 0
|
961
|
+
cv.gemm void
|
962
|
+
Mat src1
|
963
|
+
Mat src2
|
964
|
+
double alpha
|
965
|
+
Mat src3
|
966
|
+
double gamma
|
967
|
+
Mat dst /O
|
968
|
+
int flags 0
|
969
|
+
cv.mulTransposed void
|
970
|
+
Mat src
|
971
|
+
Mat dst /O
|
972
|
+
bool aTa
|
973
|
+
Mat delta Mat()
|
974
|
+
double scale 1
|
975
|
+
int dtype -1
|
976
|
+
cv.transpose void
|
977
|
+
Mat src
|
978
|
+
Mat dst /O
|
979
|
+
cv.transform void
|
980
|
+
Mat src
|
981
|
+
Mat dst /O
|
982
|
+
Mat m
|
983
|
+
cv.perspectiveTransform void
|
984
|
+
Mat src
|
985
|
+
Mat dst /O
|
986
|
+
Mat m
|
987
|
+
cv.completeSymm void
|
988
|
+
Mat mtx /IO
|
989
|
+
bool lowerToUpper false
|
990
|
+
cv.setIdentity void
|
991
|
+
Mat mtx /IO
|
992
|
+
Scalar s Scalar(1)
|
993
|
+
cv.determinant double
|
994
|
+
Mat mtx
|
995
|
+
cv.trace Scalar
|
996
|
+
Mat mtx
|
997
|
+
cv.invert double
|
998
|
+
Mat src
|
999
|
+
Mat dst /O
|
1000
|
+
int flags DECOMP_LU
|
1001
|
+
cv.solve bool
|
1002
|
+
Mat src1
|
1003
|
+
Mat src2
|
1004
|
+
Mat dst /O
|
1005
|
+
int flags DECOMP_LU
|
1006
|
+
cv.sort void
|
1007
|
+
Mat src
|
1008
|
+
Mat dst /O
|
1009
|
+
int flags
|
1010
|
+
cv.sortIdx void
|
1011
|
+
Mat src
|
1012
|
+
Mat dst /O
|
1013
|
+
int flags
|
1014
|
+
cv.solveCubic int
|
1015
|
+
Mat coeffs
|
1016
|
+
Mat roots /O
|
1017
|
+
cv.solvePoly double
|
1018
|
+
Mat coeffs
|
1019
|
+
Mat roots /O
|
1020
|
+
int maxIters 300
|
1021
|
+
cv.eigen bool
|
1022
|
+
Mat src
|
1023
|
+
Mat eigenvalues /O
|
1024
|
+
Mat eigenvectors Mat() /O
|
1025
|
+
cv.calcCovarMatrix void
|
1026
|
+
Mat samples
|
1027
|
+
Mat covar /O
|
1028
|
+
Mat mean /O
|
1029
|
+
int flags
|
1030
|
+
int ctype CV_64F
|
1031
|
+
cv.PCACompute void
|
1032
|
+
Mat data
|
1033
|
+
Mat mean /IO
|
1034
|
+
Mat eigenvectors /O
|
1035
|
+
int maxComponents 0
|
1036
|
+
cv.PCACompute void
|
1037
|
+
Mat data
|
1038
|
+
Mat mean /IO
|
1039
|
+
Mat eigenvectors /O
|
1040
|
+
double retainedVariance
|
1041
|
+
cv.PCAProject void
|
1042
|
+
Mat data
|
1043
|
+
Mat mean
|
1044
|
+
Mat eigenvectors
|
1045
|
+
Mat result /O
|
1046
|
+
cv.PCABackProject void
|
1047
|
+
Mat data
|
1048
|
+
Mat mean
|
1049
|
+
Mat eigenvectors
|
1050
|
+
Mat result /O
|
1051
|
+
cv.SVDecomp void
|
1052
|
+
Mat src
|
1053
|
+
Mat w /O
|
1054
|
+
Mat u /O
|
1055
|
+
Mat vt /O
|
1056
|
+
int flags 0
|
1057
|
+
cv.SVBackSubst void
|
1058
|
+
Mat w
|
1059
|
+
Mat u
|
1060
|
+
Mat vt
|
1061
|
+
Mat rhs
|
1062
|
+
Mat dst /O
|
1063
|
+
cv.Mahalanobis double
|
1064
|
+
Mat v1
|
1065
|
+
Mat v2
|
1066
|
+
Mat icovar
|
1067
|
+
cv.dft void
|
1068
|
+
Mat src
|
1069
|
+
Mat dst /O
|
1070
|
+
int flags 0
|
1071
|
+
int nonzeroRows 0
|
1072
|
+
cv.idft void
|
1073
|
+
Mat src
|
1074
|
+
Mat dst /O
|
1075
|
+
int flags 0
|
1076
|
+
int nonzeroRows 0
|
1077
|
+
cv.dct void
|
1078
|
+
Mat src
|
1079
|
+
Mat dst /O
|
1080
|
+
int flags 0
|
1081
|
+
cv.idct void
|
1082
|
+
Mat src
|
1083
|
+
Mat dst /O
|
1084
|
+
int flags 0
|
1085
|
+
cv.mulSpectrums void
|
1086
|
+
Mat a
|
1087
|
+
Mat b
|
1088
|
+
Mat c /O
|
1089
|
+
int flags
|
1090
|
+
bool conjB false
|
1091
|
+
cv.getOptimalDFTSize int
|
1092
|
+
int vecsize
|
1093
|
+
cv.kmeans double
|
1094
|
+
Mat data
|
1095
|
+
int K
|
1096
|
+
Mat bestLabels /IO
|
1097
|
+
TermCriteria criteria
|
1098
|
+
int attempts
|
1099
|
+
int flags
|
1100
|
+
Mat centers Mat() /O
|
1101
|
+
cv.randu void
|
1102
|
+
Mat dst /IO
|
1103
|
+
Mat low
|
1104
|
+
Mat high
|
1105
|
+
cv.randn void
|
1106
|
+
Mat dst /IO
|
1107
|
+
Mat mean
|
1108
|
+
Mat stddev
|
1109
|
+
cv.randShuffle void
|
1110
|
+
Mat dst /IO
|
1111
|
+
double iterFactor 1.
|
1112
|
+
RNG* rng 0
|
1113
|
+
cv.line void
|
1114
|
+
Mat img /IO
|
1115
|
+
Point pt1
|
1116
|
+
Point pt2
|
1117
|
+
Scalar color
|
1118
|
+
int thickness 1
|
1119
|
+
int lineType LINE_8
|
1120
|
+
int shift 0
|
1121
|
+
cv.rectangle void
|
1122
|
+
Mat img /IO
|
1123
|
+
Point pt1
|
1124
|
+
Point pt2
|
1125
|
+
Scalar color
|
1126
|
+
int thickness 1
|
1127
|
+
int lineType LINE_8
|
1128
|
+
int shift 0
|
1129
|
+
cv.circle void
|
1130
|
+
Mat img /IO
|
1131
|
+
Point center
|
1132
|
+
int radius
|
1133
|
+
Scalar color
|
1134
|
+
int thickness 1
|
1135
|
+
int lineType LINE_8
|
1136
|
+
int shift 0
|
1137
|
+
cv.ellipse void
|
1138
|
+
Mat img /IO
|
1139
|
+
Point center
|
1140
|
+
Size axes
|
1141
|
+
double angle
|
1142
|
+
double startAngle
|
1143
|
+
double endAngle
|
1144
|
+
Scalar color
|
1145
|
+
int thickness 1
|
1146
|
+
int lineType LINE_8
|
1147
|
+
int shift 0
|
1148
|
+
cv.ellipse void
|
1149
|
+
Mat img /IO
|
1150
|
+
RotatedRect box
|
1151
|
+
Scalar color
|
1152
|
+
int thickness 1
|
1153
|
+
int lineType LINE_8
|
1154
|
+
cv.fillConvexPoly void
|
1155
|
+
Mat img /IO
|
1156
|
+
Mat points
|
1157
|
+
Scalar color
|
1158
|
+
int lineType LINE_8
|
1159
|
+
int shift 0
|
1160
|
+
cv.fillPoly void
|
1161
|
+
Mat img /IO
|
1162
|
+
vector_Mat pts
|
1163
|
+
Scalar color
|
1164
|
+
int lineType LINE_8
|
1165
|
+
int shift 0
|
1166
|
+
Point offset Point()
|
1167
|
+
cv.polylines void
|
1168
|
+
Mat img /IO
|
1169
|
+
vector_Mat pts
|
1170
|
+
bool isClosed
|
1171
|
+
Scalar color
|
1172
|
+
int thickness 1
|
1173
|
+
int lineType LINE_8
|
1174
|
+
int shift 0
|
1175
|
+
cv.drawContours void
|
1176
|
+
Mat image /IO
|
1177
|
+
vector_Mat contours
|
1178
|
+
int contourIdx
|
1179
|
+
Scalar color
|
1180
|
+
int thickness 1
|
1181
|
+
int lineType LINE_8
|
1182
|
+
Mat hierarchy Mat()
|
1183
|
+
int maxLevel INT_MAX
|
1184
|
+
Point offset Point()
|
1185
|
+
cv.clipLine bool
|
1186
|
+
Rect imgRect
|
1187
|
+
Point pt1 /O; /IO
|
1188
|
+
Point pt2 /O; /IO
|
1189
|
+
cv.ellipse2Poly void
|
1190
|
+
Point center
|
1191
|
+
Size axes
|
1192
|
+
int angle
|
1193
|
+
int arcStart
|
1194
|
+
int arcEnd
|
1195
|
+
int delta
|
1196
|
+
vector_Point pts /O
|
1197
|
+
cv.putText void
|
1198
|
+
Mat img
|
1199
|
+
String text
|
1200
|
+
Point org
|
1201
|
+
int fontFace
|
1202
|
+
double fontScale
|
1203
|
+
Scalar color
|
1204
|
+
int thickness 1
|
1205
|
+
int lineType LINE_8
|
1206
|
+
bool bottomLeftOrigin false
|
1207
|
+
cv.getTextSize Size
|
1208
|
+
String text
|
1209
|
+
int fontFace
|
1210
|
+
double fontScale
|
1211
|
+
int thickness
|
1212
|
+
int* baseLine /O
|
1213
|
+
const cv.PCA.DATA_AS_ROW 0
|
1214
|
+
const cv.PCA.DATA_AS_COL 1
|
1215
|
+
const cv.PCA.USE_AVG 2
|
1216
|
+
const cv.SVD.MODIFY_A 1
|
1217
|
+
const cv.SVD.NO_UV 2
|
1218
|
+
const cv.SVD.FULL_UV 4
|
1219
|
+
class cv.KDTree
|
1220
|
+
Mat points
|
1221
|
+
vector_int labels
|
1222
|
+
int maxDepth
|
1223
|
+
int normType /RW
|
1224
|
+
cv.KDTree.KDTree
|
1225
|
+
cv.KDTree.KDTree
|
1226
|
+
Mat points
|
1227
|
+
bool copyAndReorderPoints false
|
1228
|
+
cv.KDTree.KDTree
|
1229
|
+
Mat points
|
1230
|
+
Mat _labels
|
1231
|
+
bool copyAndReorderPoints false
|
1232
|
+
cv.KDTree.build void
|
1233
|
+
Mat points
|
1234
|
+
bool copyAndReorderPoints false
|
1235
|
+
cv.KDTree.build void
|
1236
|
+
Mat points
|
1237
|
+
Mat labels
|
1238
|
+
bool copyAndReorderPoints false
|
1239
|
+
cv.KDTree.findNearest int
|
1240
|
+
Mat vec
|
1241
|
+
int K
|
1242
|
+
int Emax
|
1243
|
+
Mat neighborsIdx /O
|
1244
|
+
Mat neighbors Mat() /O
|
1245
|
+
Mat dist Mat() /O
|
1246
|
+
Mat labels Mat() /O
|
1247
|
+
cv.KDTree.findOrthoRange void
|
1248
|
+
Mat minBounds
|
1249
|
+
Mat maxBounds
|
1250
|
+
Mat neighborsIdx /O
|
1251
|
+
Mat neighbors Mat() /O
|
1252
|
+
Mat labels Mat() /O
|
1253
|
+
cv.KDTree.getPoints void
|
1254
|
+
Mat idx
|
1255
|
+
Mat pts /O
|
1256
|
+
Mat labels Mat() /O
|
1257
|
+
cv.KDTree.dims int
|
1258
|
+
const cv.RNG.UNIFORM 0
|
1259
|
+
const cv.RNG.NORMAL 1
|
1260
|
+
const cv.Formatter.FMT_MATLAB 0
|
1261
|
+
const cv.Formatter.FMT_CSV 1
|
1262
|
+
const cv.Formatter.FMT_PYTHON 2
|
1263
|
+
const cv.Formatter.FMT_NUMPY 3
|
1264
|
+
const cv.Formatter.FMT_C 4
|
1265
|
+
const cv.Formatter.FMT_DEFAULT FMT_MATLAB
|
1266
|
+
class cv.Algorithm
|
1267
|
+
cv.Algorithm.getInt int
|
1268
|
+
String name
|
1269
|
+
cv.Algorithm.getDouble double
|
1270
|
+
String name
|
1271
|
+
cv.Algorithm.getBool bool
|
1272
|
+
String name
|
1273
|
+
cv.Algorithm.getString String
|
1274
|
+
String name
|
1275
|
+
cv.Algorithm.getMat Mat
|
1276
|
+
String name
|
1277
|
+
cv.Algorithm.getMatVector vector_Mat
|
1278
|
+
String name
|
1279
|
+
cv.Algorithm.getAlgorithm Ptr_Algorithm
|
1280
|
+
String name
|
1281
|
+
cv.Algorithm.setInt void
|
1282
|
+
String name
|
1283
|
+
int value
|
1284
|
+
cv.Algorithm.setDouble void
|
1285
|
+
String name
|
1286
|
+
double value
|
1287
|
+
cv.Algorithm.setBool void
|
1288
|
+
String name
|
1289
|
+
bool value
|
1290
|
+
cv.Algorithm.setString void
|
1291
|
+
String name
|
1292
|
+
String value
|
1293
|
+
cv.Algorithm.setMat void
|
1294
|
+
String name
|
1295
|
+
Mat value
|
1296
|
+
cv.Algorithm.setMatVector void
|
1297
|
+
String name
|
1298
|
+
vector_Mat value
|
1299
|
+
cv.Algorithm.setAlgorithm void
|
1300
|
+
String name
|
1301
|
+
Ptr_Algorithm value
|
1302
|
+
cv.Algorithm.paramHelp String
|
1303
|
+
String name
|
1304
|
+
cv.Algorithm.paramType int
|
1305
|
+
String name
|
1306
|
+
cv.Algorithm.getParams void
|
1307
|
+
vector_String names /O
|
1308
|
+
cv.Algorithm.getList void /S
|
1309
|
+
vector_String algorithms /O
|
1310
|
+
cv.Algorithm._create Ptr_Algorithm /S
|
1311
|
+
String name
|
1312
|
+
const cv.Param.INT 0
|
1313
|
+
const cv.Param.BOOLEAN 1
|
1314
|
+
const cv.Param.REAL 2
|
1315
|
+
const cv.Param.STRING 3
|
1316
|
+
const cv.Param.MAT 4
|
1317
|
+
const cv.Param.MAT_VECTOR 5
|
1318
|
+
const cv.Param.ALGORITHM 6
|
1319
|
+
const cv.Param.FLOAT 7
|
1320
|
+
const cv.Param.UNSIGNED_INT 8
|
1321
|
+
const cv.Param.UINT64 9
|
1322
|
+
const cv.Param.UCHAR 11
|
1323
|
+
const cv.KERNEL_GENERAL 0
|
1324
|
+
const cv.KERNEL_SYMMETRICAL 1
|
1325
|
+
const cv.KERNEL_ASYMMETRICAL 2
|
1326
|
+
const cv.KERNEL_SMOOTH 4
|
1327
|
+
const cv.KERNEL_INTEGER 8
|
1328
|
+
const cv.MORPH_ERODE 0
|
1329
|
+
const cv.MORPH_DILATE 1
|
1330
|
+
const cv.MORPH_OPEN 2
|
1331
|
+
const cv.MORPH_CLOSE 3
|
1332
|
+
const cv.MORPH_GRADIENT 4
|
1333
|
+
const cv.MORPH_TOPHAT 5
|
1334
|
+
const cv.MORPH_BLACKHAT 6
|
1335
|
+
const cv.MORPH_RECT 0
|
1336
|
+
const cv.MORPH_CROSS 1
|
1337
|
+
const cv.MORPH_ELLIPSE 2
|
1338
|
+
const cv.INTER_NEAREST 0
|
1339
|
+
const cv.INTER_LINEAR 1
|
1340
|
+
const cv.INTER_CUBIC 2
|
1341
|
+
const cv.INTER_AREA 3
|
1342
|
+
const cv.INTER_LANCZOS4 4
|
1343
|
+
const cv.INTER_MAX 7
|
1344
|
+
const cv.WARP_INVERSE_MAP 16
|
1345
|
+
const cv.INTER_BITS 5
|
1346
|
+
const cv.INTER_BITS2 INTER_BITS * 2
|
1347
|
+
const cv.INTER_TAB_SIZE 1 << INTER_BITS
|
1348
|
+
const cv.INTER_TAB_SIZE2 INTER_TAB_SIZE * INTER_TAB_SIZE
|
1349
|
+
const cv.DIST_USER -1
|
1350
|
+
const cv.DIST_L1 1
|
1351
|
+
const cv.DIST_L2 2
|
1352
|
+
const cv.DIST_C 3
|
1353
|
+
const cv.DIST_L12 4
|
1354
|
+
const cv.DIST_FAIR 5
|
1355
|
+
const cv.DIST_WELSCH 6
|
1356
|
+
const cv.DIST_HUBER 7
|
1357
|
+
const cv.DIST_MASK_3 3
|
1358
|
+
const cv.DIST_MASK_5 5
|
1359
|
+
const cv.DIST_MASK_PRECISE 0
|
1360
|
+
const cv.THRESH_BINARY 0
|
1361
|
+
const cv.THRESH_BINARY_INV 1
|
1362
|
+
const cv.THRESH_TRUNC 2
|
1363
|
+
const cv.THRESH_TOZERO 3
|
1364
|
+
const cv.THRESH_TOZERO_INV 4
|
1365
|
+
const cv.THRESH_MASK 7
|
1366
|
+
const cv.THRESH_OTSU 8
|
1367
|
+
const cv.ADAPTIVE_THRESH_MEAN_C 0
|
1368
|
+
const cv.ADAPTIVE_THRESH_GAUSSIAN_C 1
|
1369
|
+
const cv.PROJ_SPHERICAL_ORTHO 0
|
1370
|
+
const cv.PROJ_SPHERICAL_EQRECT 1
|
1371
|
+
const cv.GC_BGD 0
|
1372
|
+
const cv.GC_FGD 1
|
1373
|
+
const cv.GC_PR_BGD 2
|
1374
|
+
const cv.GC_PR_FGD 3
|
1375
|
+
const cv.GC_INIT_WITH_RECT 0
|
1376
|
+
const cv.GC_INIT_WITH_MASK 1
|
1377
|
+
const cv.GC_EVAL 2
|
1378
|
+
const cv.DIST_LABEL_CCOMP 0
|
1379
|
+
const cv.DIST_LABEL_PIXEL 1
|
1380
|
+
const cv.FLOODFILL_FIXED_RANGE 1 << 16
|
1381
|
+
const cv.FLOODFILL_MASK_ONLY 1 << 17
|
1382
|
+
const cv.TM_SQDIFF 0
|
1383
|
+
const cv.TM_SQDIFF_NORMED 1
|
1384
|
+
const cv.TM_CCORR 2
|
1385
|
+
const cv.TM_CCORR_NORMED 3
|
1386
|
+
const cv.TM_CCOEFF 4
|
1387
|
+
const cv.TM_CCOEFF_NORMED 5
|
1388
|
+
const cv.CC_STAT_LEFT 0
|
1389
|
+
const cv.CC_STAT_TOP 1
|
1390
|
+
const cv.CC_STAT_WIDTH 2
|
1391
|
+
const cv.CC_STAT_HEIGHT 3
|
1392
|
+
const cv.CC_STAT_AREA 4
|
1393
|
+
const cv.CC_STAT_MAX 5
|
1394
|
+
const cv.RETR_EXTERNAL 0
|
1395
|
+
const cv.RETR_LIST 1
|
1396
|
+
const cv.RETR_CCOMP 2
|
1397
|
+
const cv.RETR_TREE 3
|
1398
|
+
const cv.RETR_FLOODFILL 4
|
1399
|
+
const cv.CHAIN_APPROX_NONE 1
|
1400
|
+
const cv.CHAIN_APPROX_SIMPLE 2
|
1401
|
+
const cv.CHAIN_APPROX_TC89_L1 3
|
1402
|
+
const cv.CHAIN_APPROX_TC89_KCOS 4
|
1403
|
+
const cv.HOUGH_STANDARD 0
|
1404
|
+
const cv.HOUGH_PROBABILISTIC 1
|
1405
|
+
const cv.HOUGH_MULTI_SCALE 2
|
1406
|
+
const cv.HOUGH_GRADIENT 3
|
1407
|
+
const cv.HISTCMP_CORREL 0
|
1408
|
+
const cv.HISTCMP_CHISQR 1
|
1409
|
+
const cv.HISTCMP_INTERSECT 2
|
1410
|
+
const cv.HISTCMP_BHATTACHARYYA 3
|
1411
|
+
const cv.HISTCMP_HELLINGER HISTCMP_BHATTACHARYYA
|
1412
|
+
const cv.COLOR_BGR2BGRA 0
|
1413
|
+
const cv.COLOR_RGB2RGBA COLOR_BGR2BGRA
|
1414
|
+
const cv.COLOR_BGRA2BGR 1
|
1415
|
+
const cv.COLOR_RGBA2RGB COLOR_BGRA2BGR
|
1416
|
+
const cv.COLOR_BGR2RGBA 2
|
1417
|
+
const cv.COLOR_RGB2BGRA COLOR_BGR2RGBA
|
1418
|
+
const cv.COLOR_RGBA2BGR 3
|
1419
|
+
const cv.COLOR_BGRA2RGB COLOR_RGBA2BGR
|
1420
|
+
const cv.COLOR_BGR2RGB 4
|
1421
|
+
const cv.COLOR_RGB2BGR COLOR_BGR2RGB
|
1422
|
+
const cv.COLOR_BGRA2RGBA 5
|
1423
|
+
const cv.COLOR_RGBA2BGRA COLOR_BGRA2RGBA
|
1424
|
+
const cv.COLOR_BGR2GRAY 6
|
1425
|
+
const cv.COLOR_RGB2GRAY 7
|
1426
|
+
const cv.COLOR_GRAY2BGR 8
|
1427
|
+
const cv.COLOR_GRAY2RGB COLOR_GRAY2BGR
|
1428
|
+
const cv.COLOR_GRAY2BGRA 9
|
1429
|
+
const cv.COLOR_GRAY2RGBA COLOR_GRAY2BGRA
|
1430
|
+
const cv.COLOR_BGRA2GRAY 10
|
1431
|
+
const cv.COLOR_RGBA2GRAY 11
|
1432
|
+
const cv.COLOR_BGR2BGR565 12
|
1433
|
+
const cv.COLOR_RGB2BGR565 13
|
1434
|
+
const cv.COLOR_BGR5652BGR 14
|
1435
|
+
const cv.COLOR_BGR5652RGB 15
|
1436
|
+
const cv.COLOR_BGRA2BGR565 16
|
1437
|
+
const cv.COLOR_RGBA2BGR565 17
|
1438
|
+
const cv.COLOR_BGR5652BGRA 18
|
1439
|
+
const cv.COLOR_BGR5652RGBA 19
|
1440
|
+
const cv.COLOR_GRAY2BGR565 20
|
1441
|
+
const cv.COLOR_BGR5652GRAY 21
|
1442
|
+
const cv.COLOR_BGR2BGR555 22
|
1443
|
+
const cv.COLOR_RGB2BGR555 23
|
1444
|
+
const cv.COLOR_BGR5552BGR 24
|
1445
|
+
const cv.COLOR_BGR5552RGB 25
|
1446
|
+
const cv.COLOR_BGRA2BGR555 26
|
1447
|
+
const cv.COLOR_RGBA2BGR555 27
|
1448
|
+
const cv.COLOR_BGR5552BGRA 28
|
1449
|
+
const cv.COLOR_BGR5552RGBA 29
|
1450
|
+
const cv.COLOR_GRAY2BGR555 30
|
1451
|
+
const cv.COLOR_BGR5552GRAY 31
|
1452
|
+
const cv.COLOR_BGR2XYZ 32
|
1453
|
+
const cv.COLOR_RGB2XYZ 33
|
1454
|
+
const cv.COLOR_XYZ2BGR 34
|
1455
|
+
const cv.COLOR_XYZ2RGB 35
|
1456
|
+
const cv.COLOR_BGR2YCrCb 36
|
1457
|
+
const cv.COLOR_RGB2YCrCb 37
|
1458
|
+
const cv.COLOR_YCrCb2BGR 38
|
1459
|
+
const cv.COLOR_YCrCb2RGB 39
|
1460
|
+
const cv.COLOR_BGR2HSV 40
|
1461
|
+
const cv.COLOR_RGB2HSV 41
|
1462
|
+
const cv.COLOR_BGR2Lab 44
|
1463
|
+
const cv.COLOR_RGB2Lab 45
|
1464
|
+
const cv.COLOR_BGR2Luv 50
|
1465
|
+
const cv.COLOR_RGB2Luv 51
|
1466
|
+
const cv.COLOR_BGR2HLS 52
|
1467
|
+
const cv.COLOR_RGB2HLS 53
|
1468
|
+
const cv.COLOR_HSV2BGR 54
|
1469
|
+
const cv.COLOR_HSV2RGB 55
|
1470
|
+
const cv.COLOR_Lab2BGR 56
|
1471
|
+
const cv.COLOR_Lab2RGB 57
|
1472
|
+
const cv.COLOR_Luv2BGR 58
|
1473
|
+
const cv.COLOR_Luv2RGB 59
|
1474
|
+
const cv.COLOR_HLS2BGR 60
|
1475
|
+
const cv.COLOR_HLS2RGB 61
|
1476
|
+
const cv.COLOR_BGR2HSV_FULL 66
|
1477
|
+
const cv.COLOR_RGB2HSV_FULL 67
|
1478
|
+
const cv.COLOR_BGR2HLS_FULL 68
|
1479
|
+
const cv.COLOR_RGB2HLS_FULL 69
|
1480
|
+
const cv.COLOR_HSV2BGR_FULL 70
|
1481
|
+
const cv.COLOR_HSV2RGB_FULL 71
|
1482
|
+
const cv.COLOR_HLS2BGR_FULL 72
|
1483
|
+
const cv.COLOR_HLS2RGB_FULL 73
|
1484
|
+
const cv.COLOR_LBGR2Lab 74
|
1485
|
+
const cv.COLOR_LRGB2Lab 75
|
1486
|
+
const cv.COLOR_LBGR2Luv 76
|
1487
|
+
const cv.COLOR_LRGB2Luv 77
|
1488
|
+
const cv.COLOR_Lab2LBGR 78
|
1489
|
+
const cv.COLOR_Lab2LRGB 79
|
1490
|
+
const cv.COLOR_Luv2LBGR 80
|
1491
|
+
const cv.COLOR_Luv2LRGB 81
|
1492
|
+
const cv.COLOR_BGR2YUV 82
|
1493
|
+
const cv.COLOR_RGB2YUV 83
|
1494
|
+
const cv.COLOR_YUV2BGR 84
|
1495
|
+
const cv.COLOR_YUV2RGB 85
|
1496
|
+
const cv.COLOR_YUV2RGB_NV12 90
|
1497
|
+
const cv.COLOR_YUV2BGR_NV12 91
|
1498
|
+
const cv.COLOR_YUV2RGB_NV21 92
|
1499
|
+
const cv.COLOR_YUV2BGR_NV21 93
|
1500
|
+
const cv.COLOR_YUV420sp2RGB COLOR_YUV2RGB_NV21
|
1501
|
+
const cv.COLOR_YUV420sp2BGR COLOR_YUV2BGR_NV21
|
1502
|
+
const cv.COLOR_YUV2RGBA_NV12 94
|
1503
|
+
const cv.COLOR_YUV2BGRA_NV12 95
|
1504
|
+
const cv.COLOR_YUV2RGBA_NV21 96
|
1505
|
+
const cv.COLOR_YUV2BGRA_NV21 97
|
1506
|
+
const cv.COLOR_YUV420sp2RGBA COLOR_YUV2RGBA_NV21
|
1507
|
+
const cv.COLOR_YUV420sp2BGRA COLOR_YUV2BGRA_NV21
|
1508
|
+
const cv.COLOR_YUV2RGB_YV12 98
|
1509
|
+
const cv.COLOR_YUV2BGR_YV12 99
|
1510
|
+
const cv.COLOR_YUV2RGB_IYUV 100
|
1511
|
+
const cv.COLOR_YUV2BGR_IYUV 101
|
1512
|
+
const cv.COLOR_YUV2RGB_I420 COLOR_YUV2RGB_IYUV
|
1513
|
+
const cv.COLOR_YUV2BGR_I420 COLOR_YUV2BGR_IYUV
|
1514
|
+
const cv.COLOR_YUV420p2RGB COLOR_YUV2RGB_YV12
|
1515
|
+
const cv.COLOR_YUV420p2BGR COLOR_YUV2BGR_YV12
|
1516
|
+
const cv.COLOR_YUV2RGBA_YV12 102
|
1517
|
+
const cv.COLOR_YUV2BGRA_YV12 103
|
1518
|
+
const cv.COLOR_YUV2RGBA_IYUV 104
|
1519
|
+
const cv.COLOR_YUV2BGRA_IYUV 105
|
1520
|
+
const cv.COLOR_YUV2RGBA_I420 COLOR_YUV2RGBA_IYUV
|
1521
|
+
const cv.COLOR_YUV2BGRA_I420 COLOR_YUV2BGRA_IYUV
|
1522
|
+
const cv.COLOR_YUV420p2RGBA COLOR_YUV2RGBA_YV12
|
1523
|
+
const cv.COLOR_YUV420p2BGRA COLOR_YUV2BGRA_YV12
|
1524
|
+
const cv.COLOR_YUV2GRAY_420 106
|
1525
|
+
const cv.COLOR_YUV2GRAY_NV21 COLOR_YUV2GRAY_420
|
1526
|
+
const cv.COLOR_YUV2GRAY_NV12 COLOR_YUV2GRAY_420
|
1527
|
+
const cv.COLOR_YUV2GRAY_YV12 COLOR_YUV2GRAY_420
|
1528
|
+
const cv.COLOR_YUV2GRAY_IYUV COLOR_YUV2GRAY_420
|
1529
|
+
const cv.COLOR_YUV2GRAY_I420 COLOR_YUV2GRAY_420
|
1530
|
+
const cv.COLOR_YUV420sp2GRAY COLOR_YUV2GRAY_420
|
1531
|
+
const cv.COLOR_YUV420p2GRAY COLOR_YUV2GRAY_420
|
1532
|
+
const cv.COLOR_YUV2RGB_UYVY 107
|
1533
|
+
const cv.COLOR_YUV2BGR_UYVY 108
|
1534
|
+
const cv.COLOR_YUV2RGB_Y422 COLOR_YUV2RGB_UYVY
|
1535
|
+
const cv.COLOR_YUV2BGR_Y422 COLOR_YUV2BGR_UYVY
|
1536
|
+
const cv.COLOR_YUV2RGB_UYNV COLOR_YUV2RGB_UYVY
|
1537
|
+
const cv.COLOR_YUV2BGR_UYNV COLOR_YUV2BGR_UYVY
|
1538
|
+
const cv.COLOR_YUV2RGBA_UYVY 111
|
1539
|
+
const cv.COLOR_YUV2BGRA_UYVY 112
|
1540
|
+
const cv.COLOR_YUV2RGBA_Y422 COLOR_YUV2RGBA_UYVY
|
1541
|
+
const cv.COLOR_YUV2BGRA_Y422 COLOR_YUV2BGRA_UYVY
|
1542
|
+
const cv.COLOR_YUV2RGBA_UYNV COLOR_YUV2RGBA_UYVY
|
1543
|
+
const cv.COLOR_YUV2BGRA_UYNV COLOR_YUV2BGRA_UYVY
|
1544
|
+
const cv.COLOR_YUV2RGB_YUY2 115
|
1545
|
+
const cv.COLOR_YUV2BGR_YUY2 116
|
1546
|
+
const cv.COLOR_YUV2RGB_YVYU 117
|
1547
|
+
const cv.COLOR_YUV2BGR_YVYU 118
|
1548
|
+
const cv.COLOR_YUV2RGB_YUYV COLOR_YUV2RGB_YUY2
|
1549
|
+
const cv.COLOR_YUV2BGR_YUYV COLOR_YUV2BGR_YUY2
|
1550
|
+
const cv.COLOR_YUV2RGB_YUNV COLOR_YUV2RGB_YUY2
|
1551
|
+
const cv.COLOR_YUV2BGR_YUNV COLOR_YUV2BGR_YUY2
|
1552
|
+
const cv.COLOR_YUV2RGBA_YUY2 119
|
1553
|
+
const cv.COLOR_YUV2BGRA_YUY2 120
|
1554
|
+
const cv.COLOR_YUV2RGBA_YVYU 121
|
1555
|
+
const cv.COLOR_YUV2BGRA_YVYU 122
|
1556
|
+
const cv.COLOR_YUV2RGBA_YUYV COLOR_YUV2RGBA_YUY2
|
1557
|
+
const cv.COLOR_YUV2BGRA_YUYV COLOR_YUV2BGRA_YUY2
|
1558
|
+
const cv.COLOR_YUV2RGBA_YUNV COLOR_YUV2RGBA_YUY2
|
1559
|
+
const cv.COLOR_YUV2BGRA_YUNV COLOR_YUV2BGRA_YUY2
|
1560
|
+
const cv.COLOR_YUV2GRAY_UYVY 123
|
1561
|
+
const cv.COLOR_YUV2GRAY_YUY2 124
|
1562
|
+
const cv.COLOR_YUV2GRAY_Y422 COLOR_YUV2GRAY_UYVY
|
1563
|
+
const cv.COLOR_YUV2GRAY_UYNV COLOR_YUV2GRAY_UYVY
|
1564
|
+
const cv.COLOR_YUV2GRAY_YVYU COLOR_YUV2GRAY_YUY2
|
1565
|
+
const cv.COLOR_YUV2GRAY_YUYV COLOR_YUV2GRAY_YUY2
|
1566
|
+
const cv.COLOR_YUV2GRAY_YUNV COLOR_YUV2GRAY_YUY2
|
1567
|
+
const cv.COLOR_RGBA2mRGBA 125
|
1568
|
+
const cv.COLOR_mRGBA2RGBA 126
|
1569
|
+
const cv.COLOR_RGB2YUV_I420 127
|
1570
|
+
const cv.COLOR_BGR2YUV_I420 128
|
1571
|
+
const cv.COLOR_RGB2YUV_IYUV COLOR_RGB2YUV_I420
|
1572
|
+
const cv.COLOR_BGR2YUV_IYUV COLOR_BGR2YUV_I420
|
1573
|
+
const cv.COLOR_RGBA2YUV_I420 129
|
1574
|
+
const cv.COLOR_BGRA2YUV_I420 130
|
1575
|
+
const cv.COLOR_RGBA2YUV_IYUV COLOR_RGBA2YUV_I420
|
1576
|
+
const cv.COLOR_BGRA2YUV_IYUV COLOR_BGRA2YUV_I420
|
1577
|
+
const cv.COLOR_RGB2YUV_YV12 131
|
1578
|
+
const cv.COLOR_BGR2YUV_YV12 132
|
1579
|
+
const cv.COLOR_RGBA2YUV_YV12 133
|
1580
|
+
const cv.COLOR_BGRA2YUV_YV12 134
|
1581
|
+
const cv.COLOR_BayerBG2BGR 46
|
1582
|
+
const cv.COLOR_BayerGB2BGR 47
|
1583
|
+
const cv.COLOR_BayerRG2BGR 48
|
1584
|
+
const cv.COLOR_BayerGR2BGR 49
|
1585
|
+
const cv.COLOR_BayerBG2RGB COLOR_BayerRG2BGR
|
1586
|
+
const cv.COLOR_BayerGB2RGB COLOR_BayerGR2BGR
|
1587
|
+
const cv.COLOR_BayerRG2RGB COLOR_BayerBG2BGR
|
1588
|
+
const cv.COLOR_BayerGR2RGB COLOR_BayerGB2BGR
|
1589
|
+
const cv.COLOR_BayerBG2GRAY 86
|
1590
|
+
const cv.COLOR_BayerGB2GRAY 87
|
1591
|
+
const cv.COLOR_BayerRG2GRAY 88
|
1592
|
+
const cv.COLOR_BayerGR2GRAY 89
|
1593
|
+
const cv.COLOR_BayerBG2BGR_VNG 62
|
1594
|
+
const cv.COLOR_BayerGB2BGR_VNG 63
|
1595
|
+
const cv.COLOR_BayerRG2BGR_VNG 64
|
1596
|
+
const cv.COLOR_BayerGR2BGR_VNG 65
|
1597
|
+
const cv.COLOR_BayerBG2RGB_VNG COLOR_BayerRG2BGR_VNG
|
1598
|
+
const cv.COLOR_BayerGB2RGB_VNG COLOR_BayerGR2BGR_VNG
|
1599
|
+
const cv.COLOR_BayerRG2RGB_VNG COLOR_BayerBG2BGR_VNG
|
1600
|
+
const cv.COLOR_BayerGR2RGB_VNG COLOR_BayerGB2BGR_VNG
|
1601
|
+
const cv.COLOR_BayerBG2BGR_EA 135
|
1602
|
+
const cv.COLOR_BayerGB2BGR_EA 136
|
1603
|
+
const cv.COLOR_BayerRG2BGR_EA 137
|
1604
|
+
const cv.COLOR_BayerGR2BGR_EA 138
|
1605
|
+
const cv.COLOR_BayerBG2RGB_EA COLOR_BayerRG2BGR_EA
|
1606
|
+
const cv.COLOR_BayerGB2RGB_EA COLOR_BayerGR2BGR_EA
|
1607
|
+
const cv.COLOR_BayerRG2RGB_EA COLOR_BayerBG2BGR_EA
|
1608
|
+
const cv.COLOR_BayerGR2RGB_EA COLOR_BayerGB2BGR_EA
|
1609
|
+
const cv.COLOR_COLORCVT_MAX 139
|
1610
|
+
const cv.GeneralizedHough.GHT_POSITION 0
|
1611
|
+
const cv.GeneralizedHough.GHT_SCALE 1
|
1612
|
+
const cv.GeneralizedHough.GHT_ROTATION 2
|
1613
|
+
class cv.Subdiv2D
|
1614
|
+
const cv.Subdiv2D.PTLOC_ERROR -2
|
1615
|
+
const cv.Subdiv2D.PTLOC_OUTSIDE_RECT -1
|
1616
|
+
const cv.Subdiv2D.PTLOC_INSIDE 0
|
1617
|
+
const cv.Subdiv2D.PTLOC_VERTEX 1
|
1618
|
+
const cv.Subdiv2D.PTLOC_ON_EDGE 2
|
1619
|
+
const cv.Subdiv2D.NEXT_AROUND_ORG 0x00
|
1620
|
+
const cv.Subdiv2D.NEXT_AROUND_DST 0x22
|
1621
|
+
const cv.Subdiv2D.PREV_AROUND_ORG 0x11
|
1622
|
+
const cv.Subdiv2D.PREV_AROUND_DST 0x33
|
1623
|
+
const cv.Subdiv2D.NEXT_AROUND_LEFT 0x13
|
1624
|
+
const cv.Subdiv2D.NEXT_AROUND_RIGHT 0x31
|
1625
|
+
const cv.Subdiv2D.PREV_AROUND_LEFT 0x20
|
1626
|
+
const cv.Subdiv2D.PREV_AROUND_RIGHT 0x02
|
1627
|
+
cv.Subdiv2D.Subdiv2D
|
1628
|
+
cv.Subdiv2D.Subdiv2D
|
1629
|
+
Rect rect
|
1630
|
+
cv.Subdiv2D.initDelaunay void
|
1631
|
+
Rect rect
|
1632
|
+
cv.Subdiv2D.insert int
|
1633
|
+
Point2f pt
|
1634
|
+
cv.Subdiv2D.insert void
|
1635
|
+
vector_Point2f ptvec
|
1636
|
+
cv.Subdiv2D.locate int
|
1637
|
+
Point2f pt
|
1638
|
+
int edge /O
|
1639
|
+
int vertex /O
|
1640
|
+
cv.Subdiv2D.findNearest int
|
1641
|
+
Point2f pt
|
1642
|
+
Point2f* nearestPt 0 /O
|
1643
|
+
cv.Subdiv2D.getEdgeList void
|
1644
|
+
vector_Vec4f edgeList /O
|
1645
|
+
cv.Subdiv2D.getTriangleList void
|
1646
|
+
vector_Vec6f triangleList /O
|
1647
|
+
cv.Subdiv2D.getVoronoiFacetList void
|
1648
|
+
vector_int idx
|
1649
|
+
vector_vector_Point2f facetList /O
|
1650
|
+
vector_Point2f facetCenters /O
|
1651
|
+
cv.Subdiv2D.getVertex Point2f
|
1652
|
+
int vertex
|
1653
|
+
int* firstEdge 0 /O
|
1654
|
+
cv.Subdiv2D.getEdge int
|
1655
|
+
int edge
|
1656
|
+
int nextEdgeType
|
1657
|
+
cv.Subdiv2D.nextEdge int
|
1658
|
+
int edge
|
1659
|
+
cv.Subdiv2D.rotateEdge int
|
1660
|
+
int edge
|
1661
|
+
int rotate
|
1662
|
+
cv.Subdiv2D.symEdge int
|
1663
|
+
int edge
|
1664
|
+
cv.Subdiv2D.edgeOrg int
|
1665
|
+
int edge
|
1666
|
+
Point2f* orgpt 0 /O
|
1667
|
+
cv.Subdiv2D.edgeDst int
|
1668
|
+
int edge
|
1669
|
+
Point2f* dstpt 0 /O
|
1670
|
+
cv.getGaussianKernel Mat
|
1671
|
+
int ksize
|
1672
|
+
double sigma
|
1673
|
+
int ktype CV_64F
|
1674
|
+
cv.getDerivKernels void
|
1675
|
+
Mat kx /O
|
1676
|
+
Mat ky /O
|
1677
|
+
int dx
|
1678
|
+
int dy
|
1679
|
+
int ksize
|
1680
|
+
bool normalize false
|
1681
|
+
int ktype CV_32F
|
1682
|
+
cv.getGaborKernel Mat
|
1683
|
+
Size ksize
|
1684
|
+
double sigma
|
1685
|
+
double theta
|
1686
|
+
double lambd
|
1687
|
+
double gamma
|
1688
|
+
double psi CV_PI*0.5
|
1689
|
+
int ktype CV_64F
|
1690
|
+
cv.getStructuringElement Mat
|
1691
|
+
int shape
|
1692
|
+
Size ksize
|
1693
|
+
Point anchor Point(-1,-1)
|
1694
|
+
cv.medianBlur void
|
1695
|
+
Mat src
|
1696
|
+
Mat dst /O
|
1697
|
+
int ksize
|
1698
|
+
cv.GaussianBlur void
|
1699
|
+
Mat src
|
1700
|
+
Mat dst /O
|
1701
|
+
Size ksize
|
1702
|
+
double sigmaX
|
1703
|
+
double sigmaY 0
|
1704
|
+
int borderType BORDER_DEFAULT
|
1705
|
+
cv.bilateralFilter void
|
1706
|
+
Mat src
|
1707
|
+
Mat dst /O
|
1708
|
+
int d
|
1709
|
+
double sigmaColor
|
1710
|
+
double sigmaSpace
|
1711
|
+
int borderType BORDER_DEFAULT
|
1712
|
+
cv.boxFilter void
|
1713
|
+
Mat src
|
1714
|
+
Mat dst /O
|
1715
|
+
int ddepth
|
1716
|
+
Size ksize
|
1717
|
+
Point anchor Point(-1,-1)
|
1718
|
+
bool normalize true
|
1719
|
+
int borderType BORDER_DEFAULT
|
1720
|
+
cv.blur void
|
1721
|
+
Mat src
|
1722
|
+
Mat dst /O
|
1723
|
+
Size ksize
|
1724
|
+
Point anchor Point(-1,-1)
|
1725
|
+
int borderType BORDER_DEFAULT
|
1726
|
+
cv.filter2D void
|
1727
|
+
Mat src
|
1728
|
+
Mat dst /O
|
1729
|
+
int ddepth
|
1730
|
+
Mat kernel
|
1731
|
+
Point anchor Point(-1,-1)
|
1732
|
+
double delta 0
|
1733
|
+
int borderType BORDER_DEFAULT
|
1734
|
+
cv.sepFilter2D void
|
1735
|
+
Mat src
|
1736
|
+
Mat dst /O
|
1737
|
+
int ddepth
|
1738
|
+
Mat kernelX
|
1739
|
+
Mat kernelY
|
1740
|
+
Point anchor Point(-1,-1)
|
1741
|
+
double delta 0
|
1742
|
+
int borderType BORDER_DEFAULT
|
1743
|
+
cv.Sobel void
|
1744
|
+
Mat src
|
1745
|
+
Mat dst /O
|
1746
|
+
int ddepth
|
1747
|
+
int dx
|
1748
|
+
int dy
|
1749
|
+
int ksize 3
|
1750
|
+
double scale 1
|
1751
|
+
double delta 0
|
1752
|
+
int borderType BORDER_DEFAULT
|
1753
|
+
cv.Scharr void
|
1754
|
+
Mat src
|
1755
|
+
Mat dst /O
|
1756
|
+
int ddepth
|
1757
|
+
int dx
|
1758
|
+
int dy
|
1759
|
+
double scale 1
|
1760
|
+
double delta 0
|
1761
|
+
int borderType BORDER_DEFAULT
|
1762
|
+
cv.Laplacian void
|
1763
|
+
Mat src
|
1764
|
+
Mat dst /O
|
1765
|
+
int ddepth
|
1766
|
+
int ksize 1
|
1767
|
+
double scale 1
|
1768
|
+
double delta 0
|
1769
|
+
int borderType BORDER_DEFAULT
|
1770
|
+
cv.Canny void
|
1771
|
+
Mat image
|
1772
|
+
Mat edges /O
|
1773
|
+
double threshold1
|
1774
|
+
double threshold2
|
1775
|
+
int apertureSize 3
|
1776
|
+
bool L2gradient false
|
1777
|
+
cv.cornerMinEigenVal void
|
1778
|
+
Mat src
|
1779
|
+
Mat dst /O
|
1780
|
+
int blockSize
|
1781
|
+
int ksize 3
|
1782
|
+
int borderType BORDER_DEFAULT
|
1783
|
+
cv.cornerHarris void
|
1784
|
+
Mat src
|
1785
|
+
Mat dst /O
|
1786
|
+
int blockSize
|
1787
|
+
int ksize
|
1788
|
+
double k
|
1789
|
+
int borderType BORDER_DEFAULT
|
1790
|
+
cv.cornerEigenValsAndVecs void
|
1791
|
+
Mat src
|
1792
|
+
Mat dst /O
|
1793
|
+
int blockSize
|
1794
|
+
int ksize
|
1795
|
+
int borderType BORDER_DEFAULT
|
1796
|
+
cv.preCornerDetect void
|
1797
|
+
Mat src
|
1798
|
+
Mat dst /O
|
1799
|
+
int ksize
|
1800
|
+
int borderType BORDER_DEFAULT
|
1801
|
+
cv.cornerSubPix void
|
1802
|
+
Mat image
|
1803
|
+
Mat corners /IO
|
1804
|
+
Size winSize
|
1805
|
+
Size zeroZone
|
1806
|
+
TermCriteria criteria
|
1807
|
+
cv.goodFeaturesToTrack void
|
1808
|
+
Mat image
|
1809
|
+
Mat corners /O
|
1810
|
+
int maxCorners
|
1811
|
+
double qualityLevel
|
1812
|
+
double minDistance
|
1813
|
+
Mat mask Mat()
|
1814
|
+
int blockSize 3
|
1815
|
+
bool useHarrisDetector false
|
1816
|
+
double k 0.04
|
1817
|
+
cv.HoughLines void
|
1818
|
+
Mat image
|
1819
|
+
Mat lines /O
|
1820
|
+
double rho
|
1821
|
+
double theta
|
1822
|
+
int threshold
|
1823
|
+
double srn 0
|
1824
|
+
double stn 0
|
1825
|
+
cv.HoughLinesP void
|
1826
|
+
Mat image
|
1827
|
+
Mat lines /O
|
1828
|
+
double rho
|
1829
|
+
double theta
|
1830
|
+
int threshold
|
1831
|
+
double minLineLength 0
|
1832
|
+
double maxLineGap 0
|
1833
|
+
cv.HoughCircles void
|
1834
|
+
Mat image
|
1835
|
+
Mat circles /O
|
1836
|
+
int method
|
1837
|
+
double dp
|
1838
|
+
double minDist
|
1839
|
+
double param1 100
|
1840
|
+
double param2 100
|
1841
|
+
int minRadius 0
|
1842
|
+
int maxRadius 0
|
1843
|
+
cv.erode void
|
1844
|
+
Mat src
|
1845
|
+
Mat dst /O
|
1846
|
+
Mat kernel
|
1847
|
+
Point anchor Point(-1,-1)
|
1848
|
+
int iterations 1
|
1849
|
+
int borderType BORDER_CONSTANT
|
1850
|
+
Scalar borderValue morphologyDefaultBorderValue()
|
1851
|
+
cv.dilate void
|
1852
|
+
Mat src
|
1853
|
+
Mat dst /O
|
1854
|
+
Mat kernel
|
1855
|
+
Point anchor Point(-1,-1)
|
1856
|
+
int iterations 1
|
1857
|
+
int borderType BORDER_CONSTANT
|
1858
|
+
Scalar borderValue morphologyDefaultBorderValue()
|
1859
|
+
cv.morphologyEx void
|
1860
|
+
Mat src
|
1861
|
+
Mat dst /O
|
1862
|
+
int op
|
1863
|
+
Mat kernel
|
1864
|
+
Point anchor Point(-1,-1)
|
1865
|
+
int iterations 1
|
1866
|
+
int borderType BORDER_CONSTANT
|
1867
|
+
Scalar borderValue morphologyDefaultBorderValue()
|
1868
|
+
cv.resize void
|
1869
|
+
Mat src
|
1870
|
+
Mat dst /O
|
1871
|
+
Size dsize
|
1872
|
+
double fx 0
|
1873
|
+
double fy 0
|
1874
|
+
int interpolation INTER_LINEAR
|
1875
|
+
cv.warpAffine void
|
1876
|
+
Mat src
|
1877
|
+
Mat dst /O
|
1878
|
+
Mat M
|
1879
|
+
Size dsize
|
1880
|
+
int flags INTER_LINEAR
|
1881
|
+
int borderMode BORDER_CONSTANT
|
1882
|
+
Scalar borderValue Scalar()
|
1883
|
+
cv.warpPerspective void
|
1884
|
+
Mat src
|
1885
|
+
Mat dst /O
|
1886
|
+
Mat M
|
1887
|
+
Size dsize
|
1888
|
+
int flags INTER_LINEAR
|
1889
|
+
int borderMode BORDER_CONSTANT
|
1890
|
+
Scalar borderValue Scalar()
|
1891
|
+
cv.remap void
|
1892
|
+
Mat src
|
1893
|
+
Mat dst /O
|
1894
|
+
Mat map1
|
1895
|
+
Mat map2
|
1896
|
+
int interpolation
|
1897
|
+
int borderMode BORDER_CONSTANT
|
1898
|
+
Scalar borderValue Scalar()
|
1899
|
+
cv.convertMaps void
|
1900
|
+
Mat map1
|
1901
|
+
Mat map2
|
1902
|
+
Mat dstmap1 /O
|
1903
|
+
Mat dstmap2 /O
|
1904
|
+
int dstmap1type
|
1905
|
+
bool nninterpolation false
|
1906
|
+
cv.getRotationMatrix2D Mat
|
1907
|
+
Point2f center
|
1908
|
+
double angle
|
1909
|
+
double scale
|
1910
|
+
cv.invertAffineTransform void
|
1911
|
+
Mat M
|
1912
|
+
Mat iM /O
|
1913
|
+
cv.getPerspectiveTransform Mat
|
1914
|
+
Mat src
|
1915
|
+
Mat dst
|
1916
|
+
cv.getAffineTransform Mat
|
1917
|
+
Mat src
|
1918
|
+
Mat dst
|
1919
|
+
cv.getRectSubPix void
|
1920
|
+
Mat image
|
1921
|
+
Size patchSize
|
1922
|
+
Point2f center
|
1923
|
+
Mat patch /O
|
1924
|
+
int patchType -1
|
1925
|
+
cv.integral void
|
1926
|
+
Mat src
|
1927
|
+
Mat sum /O
|
1928
|
+
int sdepth -1
|
1929
|
+
cv.integral void =integral2
|
1930
|
+
Mat src
|
1931
|
+
Mat sum /O
|
1932
|
+
Mat sqsum /O
|
1933
|
+
int sdepth -1
|
1934
|
+
cv.integral void =integral3
|
1935
|
+
Mat src
|
1936
|
+
Mat sum /O
|
1937
|
+
Mat sqsum /O
|
1938
|
+
Mat tilted /O
|
1939
|
+
int sdepth -1
|
1940
|
+
cv.accumulate void
|
1941
|
+
Mat src
|
1942
|
+
Mat dst /IO
|
1943
|
+
Mat mask Mat()
|
1944
|
+
cv.accumulateSquare void
|
1945
|
+
Mat src
|
1946
|
+
Mat dst /IO
|
1947
|
+
Mat mask Mat()
|
1948
|
+
cv.accumulateProduct void
|
1949
|
+
Mat src1
|
1950
|
+
Mat src2
|
1951
|
+
Mat dst /IO
|
1952
|
+
Mat mask Mat()
|
1953
|
+
cv.accumulateWeighted void
|
1954
|
+
Mat src
|
1955
|
+
Mat dst /IO
|
1956
|
+
double alpha
|
1957
|
+
Mat mask Mat()
|
1958
|
+
cv.phaseCorrelate Point2d
|
1959
|
+
Mat src1
|
1960
|
+
Mat src2
|
1961
|
+
Mat window Mat()
|
1962
|
+
double* response 0 /O
|
1963
|
+
cv.createHanningWindow void
|
1964
|
+
Mat dst /O
|
1965
|
+
Size winSize
|
1966
|
+
int type
|
1967
|
+
cv.threshold double
|
1968
|
+
Mat src
|
1969
|
+
Mat dst /O
|
1970
|
+
double thresh
|
1971
|
+
double maxval
|
1972
|
+
int type
|
1973
|
+
cv.adaptiveThreshold void
|
1974
|
+
Mat src
|
1975
|
+
Mat dst /O
|
1976
|
+
double maxValue
|
1977
|
+
int adaptiveMethod
|
1978
|
+
int thresholdType
|
1979
|
+
int blockSize
|
1980
|
+
double C
|
1981
|
+
cv.pyrDown void
|
1982
|
+
Mat src
|
1983
|
+
Mat dst /O
|
1984
|
+
Size dstsize Size()
|
1985
|
+
int borderType BORDER_DEFAULT
|
1986
|
+
cv.pyrUp void
|
1987
|
+
Mat src
|
1988
|
+
Mat dst /O
|
1989
|
+
Size dstsize Size()
|
1990
|
+
int borderType BORDER_DEFAULT
|
1991
|
+
cv.undistort void
|
1992
|
+
Mat src
|
1993
|
+
Mat dst /O
|
1994
|
+
Mat cameraMatrix
|
1995
|
+
Mat distCoeffs
|
1996
|
+
Mat newCameraMatrix Mat()
|
1997
|
+
cv.initUndistortRectifyMap void
|
1998
|
+
Mat cameraMatrix
|
1999
|
+
Mat distCoeffs
|
2000
|
+
Mat R
|
2001
|
+
Mat newCameraMatrix
|
2002
|
+
Size size
|
2003
|
+
int m1type
|
2004
|
+
Mat map1 /O
|
2005
|
+
Mat map2 /O
|
2006
|
+
cv.initWideAngleProjMap float
|
2007
|
+
Mat cameraMatrix
|
2008
|
+
Mat distCoeffs
|
2009
|
+
Size imageSize
|
2010
|
+
int destImageWidth
|
2011
|
+
int m1type
|
2012
|
+
Mat map1 /O
|
2013
|
+
Mat map2 /O
|
2014
|
+
int projType PROJ_SPHERICAL_EQRECT
|
2015
|
+
double alpha 0
|
2016
|
+
cv.getDefaultNewCameraMatrix Mat
|
2017
|
+
Mat cameraMatrix
|
2018
|
+
Size imgsize Size()
|
2019
|
+
bool centerPrincipalPoint false
|
2020
|
+
cv.undistortPoints void
|
2021
|
+
Mat src
|
2022
|
+
Mat dst /O
|
2023
|
+
Mat cameraMatrix
|
2024
|
+
Mat distCoeffs
|
2025
|
+
Mat R Mat()
|
2026
|
+
Mat P Mat()
|
2027
|
+
cv.calcHist void
|
2028
|
+
vector_Mat images
|
2029
|
+
vector_int channels
|
2030
|
+
Mat mask
|
2031
|
+
Mat hist /O
|
2032
|
+
vector_int histSize
|
2033
|
+
vector_float ranges
|
2034
|
+
bool accumulate false
|
2035
|
+
cv.calcBackProject void
|
2036
|
+
vector_Mat images
|
2037
|
+
vector_int channels
|
2038
|
+
Mat hist
|
2039
|
+
Mat dst /O
|
2040
|
+
vector_float ranges
|
2041
|
+
double scale
|
2042
|
+
cv.compareHist double
|
2043
|
+
Mat H1
|
2044
|
+
Mat H2
|
2045
|
+
int method
|
2046
|
+
cv.equalizeHist void
|
2047
|
+
Mat src
|
2048
|
+
Mat dst /O
|
2049
|
+
cv.watershed void
|
2050
|
+
Mat image
|
2051
|
+
Mat markers /IO
|
2052
|
+
cv.pyrMeanShiftFiltering void
|
2053
|
+
Mat src
|
2054
|
+
Mat dst /O
|
2055
|
+
double sp
|
2056
|
+
double sr
|
2057
|
+
int maxLevel 1
|
2058
|
+
TermCriteria termcrit TermCriteria(TermCriteria::MAX_ITER+TermCriteria::EPS,5,1)
|
2059
|
+
cv.grabCut void
|
2060
|
+
Mat img
|
2061
|
+
Mat mask /IO
|
2062
|
+
Rect rect
|
2063
|
+
Mat bgdModel /IO
|
2064
|
+
Mat fgdModel /IO
|
2065
|
+
int iterCount
|
2066
|
+
int mode GC_EVAL
|
2067
|
+
cv.distanceTransform void =distanceTransformWithLabels
|
2068
|
+
Mat src
|
2069
|
+
Mat dst /O
|
2070
|
+
Mat labels /O
|
2071
|
+
int distanceType
|
2072
|
+
int maskSize
|
2073
|
+
int labelType DIST_LABEL_CCOMP
|
2074
|
+
cv.distanceTransform void
|
2075
|
+
Mat src
|
2076
|
+
Mat dst /O
|
2077
|
+
int distanceType
|
2078
|
+
int maskSize
|
2079
|
+
cv.floodFill int
|
2080
|
+
Mat image /IO
|
2081
|
+
Mat mask /IO
|
2082
|
+
Point seedPoint
|
2083
|
+
Scalar newVal
|
2084
|
+
Rect* rect 0 /O
|
2085
|
+
Scalar loDiff Scalar()
|
2086
|
+
Scalar upDiff Scalar()
|
2087
|
+
int flags 4
|
2088
|
+
cv.cvtColor void
|
2089
|
+
Mat src
|
2090
|
+
Mat dst /O
|
2091
|
+
int code
|
2092
|
+
int dstCn 0
|
2093
|
+
cv.demosaicing void
|
2094
|
+
Mat _src
|
2095
|
+
Mat _dst /O
|
2096
|
+
int code
|
2097
|
+
int dcn 0
|
2098
|
+
cv.moments Moments
|
2099
|
+
Mat array
|
2100
|
+
bool binaryImage false
|
2101
|
+
cv.HuMoments void
|
2102
|
+
Moments m
|
2103
|
+
Mat hu /O
|
2104
|
+
cv.matchTemplate void
|
2105
|
+
Mat image
|
2106
|
+
Mat templ
|
2107
|
+
Mat result /O
|
2108
|
+
int method
|
2109
|
+
cv.connectedComponents int
|
2110
|
+
Mat image
|
2111
|
+
Mat labels /O
|
2112
|
+
int connectivity 8
|
2113
|
+
int ltype CV_32S
|
2114
|
+
cv.connectedComponentsWithStats int
|
2115
|
+
Mat image
|
2116
|
+
Mat labels /O
|
2117
|
+
Mat stats /O
|
2118
|
+
Mat centroids /O
|
2119
|
+
int connectivity 8
|
2120
|
+
int ltype CV_32S
|
2121
|
+
cv.findContours void
|
2122
|
+
Mat image /IO
|
2123
|
+
vector_Mat contours /O
|
2124
|
+
Mat hierarchy /O
|
2125
|
+
int mode
|
2126
|
+
int method
|
2127
|
+
Point offset Point()
|
2128
|
+
cv.approxPolyDP void
|
2129
|
+
Mat curve
|
2130
|
+
Mat approxCurve /O
|
2131
|
+
double epsilon
|
2132
|
+
bool closed
|
2133
|
+
cv.arcLength double
|
2134
|
+
Mat curve
|
2135
|
+
bool closed
|
2136
|
+
cv.boundingRect Rect
|
2137
|
+
Mat points
|
2138
|
+
cv.contourArea double
|
2139
|
+
Mat contour
|
2140
|
+
bool oriented false
|
2141
|
+
cv.minAreaRect RotatedRect
|
2142
|
+
Mat points
|
2143
|
+
cv.minEnclosingCircle void
|
2144
|
+
Mat points
|
2145
|
+
Point2f center /O
|
2146
|
+
float radius /O
|
2147
|
+
cv.matchShapes double
|
2148
|
+
Mat contour1
|
2149
|
+
Mat contour2
|
2150
|
+
int method
|
2151
|
+
double parameter
|
2152
|
+
cv.convexHull void
|
2153
|
+
Mat points
|
2154
|
+
Mat hull /O
|
2155
|
+
bool clockwise false
|
2156
|
+
bool returnPoints true
|
2157
|
+
cv.convexityDefects void
|
2158
|
+
Mat contour
|
2159
|
+
Mat convexhull
|
2160
|
+
Mat convexityDefects /O
|
2161
|
+
cv.isContourConvex bool
|
2162
|
+
Mat contour
|
2163
|
+
cv.intersectConvexConvex float
|
2164
|
+
Mat _p1
|
2165
|
+
Mat _p2
|
2166
|
+
Mat _p12 /O
|
2167
|
+
bool handleNested true
|
2168
|
+
cv.fitEllipse RotatedRect
|
2169
|
+
Mat points
|
2170
|
+
cv.fitLine void
|
2171
|
+
Mat points
|
2172
|
+
Mat line /O
|
2173
|
+
int distType
|
2174
|
+
double param
|
2175
|
+
double reps
|
2176
|
+
double aeps
|
2177
|
+
cv.pointPolygonTest double
|
2178
|
+
Mat contour
|
2179
|
+
Point2f pt
|
2180
|
+
bool measureDist
|
2181
|
+
class cv.flann.Index
|
2182
|
+
cv.flann.Index.Index
|
2183
|
+
cv.flann.Index.Index
|
2184
|
+
Mat features
|
2185
|
+
IndexParams params
|
2186
|
+
cvflann_flann_distance_t distType cvflann::FLANN_DIST_L2
|
2187
|
+
cv.flann.Index.build void
|
2188
|
+
Mat features
|
2189
|
+
IndexParams params
|
2190
|
+
cvflann_flann_distance_t distType cvflann::FLANN_DIST_L2
|
2191
|
+
cv.flann.Index.knnSearch void
|
2192
|
+
Mat query
|
2193
|
+
Mat indices /O
|
2194
|
+
Mat dists /O
|
2195
|
+
int knn
|
2196
|
+
SearchParams params SearchParams()
|
2197
|
+
cv.flann.Index.radiusSearch int
|
2198
|
+
Mat query
|
2199
|
+
Mat indices /O
|
2200
|
+
Mat dists /O
|
2201
|
+
double radius
|
2202
|
+
int maxResults
|
2203
|
+
SearchParams params SearchParams()
|
2204
|
+
cv.flann.Index.save void
|
2205
|
+
String filename
|
2206
|
+
cv.flann.Index.load bool
|
2207
|
+
Mat features
|
2208
|
+
String filename
|
2209
|
+
cv.flann.Index.release void
|
2210
|
+
cv.flann.Index.getDistance cvflann_flann_distance_t
|
2211
|
+
cv.flann.Index.getAlgorithm cvflann_flann_algorithm_t
|
2212
|
+
const cv.WINDOW_NORMAL 0x00000000
|
2213
|
+
const cv.WINDOW_AUTOSIZE 0x00000001
|
2214
|
+
const cv.WINDOW_OPENGL 0x00001000
|
2215
|
+
const cv.WINDOW_FULLSCREEN 1
|
2216
|
+
const cv.WINDOW_FREERATIO 0x00000100
|
2217
|
+
const cv.WINDOW_KEEPRATIO 0x00000000
|
2218
|
+
const cv.WND_PROP_FULLSCREEN 0
|
2219
|
+
const cv.WND_PROP_AUTOSIZE 1
|
2220
|
+
const cv.WND_PROP_ASPECT_RATIO 2
|
2221
|
+
const cv.WND_PROP_OPENGL 3
|
2222
|
+
const cv.EVENT_MOUSEMOVE 0
|
2223
|
+
const cv.EVENT_LBUTTONDOWN 1
|
2224
|
+
const cv.EVENT_RBUTTONDOWN 2
|
2225
|
+
const cv.EVENT_MBUTTONDOWN 3
|
2226
|
+
const cv.EVENT_LBUTTONUP 4
|
2227
|
+
const cv.EVENT_RBUTTONUP 5
|
2228
|
+
const cv.EVENT_MBUTTONUP 6
|
2229
|
+
const cv.EVENT_LBUTTONDBLCLK 7
|
2230
|
+
const cv.EVENT_RBUTTONDBLCLK 8
|
2231
|
+
const cv.EVENT_MBUTTONDBLCLK 9
|
2232
|
+
const cv.EVENT_FLAG_LBUTTON 1
|
2233
|
+
const cv.EVENT_FLAG_RBUTTON 2
|
2234
|
+
const cv.EVENT_FLAG_MBUTTON 4
|
2235
|
+
const cv.EVENT_FLAG_CTRLKEY 8
|
2236
|
+
const cv.EVENT_FLAG_SHIFTKEY 16
|
2237
|
+
const cv.EVENT_FLAG_ALTKEY 32
|
2238
|
+
const cv.QT_FONT_LIGHT 25
|
2239
|
+
const cv.QT_FONT_NORMAL 50
|
2240
|
+
const cv.QT_FONT_DEMIBOLD 63
|
2241
|
+
const cv.QT_FONT_BOLD 75
|
2242
|
+
const cv.QT_FONT_BLACK 87
|
2243
|
+
const cv.QT_STYLE_NORMAL 0
|
2244
|
+
const cv.QT_STYLE_ITALIC 1
|
2245
|
+
const cv.QT_STYLE_OBLIQUE 2
|
2246
|
+
const cv.QT_PUSH_BUTTON 0
|
2247
|
+
const cv.QT_CHECKBOX 1
|
2248
|
+
const cv.QT_RADIOBOX 2
|
2249
|
+
cv.namedWindow void
|
2250
|
+
String winname
|
2251
|
+
int flags WINDOW_AUTOSIZE
|
2252
|
+
cv.destroyWindow void
|
2253
|
+
String winname
|
2254
|
+
cv.destroyAllWindows void
|
2255
|
+
cv.startWindowThread int
|
2256
|
+
cv.waitKey int
|
2257
|
+
int delay 0
|
2258
|
+
cv.imshow void
|
2259
|
+
String winname
|
2260
|
+
Mat mat
|
2261
|
+
cv.resizeWindow void
|
2262
|
+
String winname
|
2263
|
+
int width
|
2264
|
+
int height
|
2265
|
+
cv.moveWindow void
|
2266
|
+
String winname
|
2267
|
+
int x
|
2268
|
+
int y
|
2269
|
+
cv.setWindowProperty void
|
2270
|
+
String winname
|
2271
|
+
int prop_id
|
2272
|
+
double prop_value
|
2273
|
+
cv.getWindowProperty double
|
2274
|
+
String winname
|
2275
|
+
int prop_id
|
2276
|
+
cv.getTrackbarPos int
|
2277
|
+
String trackbarname
|
2278
|
+
String winname
|
2279
|
+
cv.setTrackbarPos void
|
2280
|
+
String trackbarname
|
2281
|
+
String winname
|
2282
|
+
int pos
|
2283
|
+
const cv.IMREAD_UNCHANGED -1
|
2284
|
+
const cv.IMREAD_GRAYSCALE 0
|
2285
|
+
const cv.IMREAD_COLOR 1
|
2286
|
+
const cv.IMREAD_ANYDEPTH 2
|
2287
|
+
const cv.IMREAD_ANYCOLOR 4
|
2288
|
+
const cv.IMWRITE_JPEG_QUALITY 1
|
2289
|
+
const cv.IMWRITE_PNG_COMPRESSION 16
|
2290
|
+
const cv.IMWRITE_PNG_STRATEGY 17
|
2291
|
+
const cv.IMWRITE_PNG_BILEVEL 18
|
2292
|
+
const cv.IMWRITE_PXM_BINARY 32
|
2293
|
+
const cv.IMWRITE_WEBP_QUALITY 64
|
2294
|
+
const cv.IMWRITE_PNG_STRATEGY_DEFAULT 0
|
2295
|
+
const cv.IMWRITE_PNG_STRATEGY_FILTERED 1
|
2296
|
+
const cv.IMWRITE_PNG_STRATEGY_HUFFMAN_ONLY 2
|
2297
|
+
const cv.IMWRITE_PNG_STRATEGY_RLE 3
|
2298
|
+
const cv.IMWRITE_PNG_STRATEGY_FIXED 4
|
2299
|
+
cv.imread Mat
|
2300
|
+
String filename
|
2301
|
+
int flags IMREAD_COLOR
|
2302
|
+
cv.imwrite bool
|
2303
|
+
String filename
|
2304
|
+
Mat img
|
2305
|
+
vector_int params std::vector<int>()
|
2306
|
+
cv.imdecode Mat
|
2307
|
+
Mat buf
|
2308
|
+
int flags
|
2309
|
+
cv.imencode bool
|
2310
|
+
String ext
|
2311
|
+
Mat img
|
2312
|
+
vector_uchar buf /O
|
2313
|
+
vector_int params std::vector<int>()
|
2314
|
+
const cv.CAP_ANY 0
|
2315
|
+
const cv.CAP_VFW 200
|
2316
|
+
const cv.CAP_V4L 200
|
2317
|
+
const cv.CAP_V4L2 CAP_V4L
|
2318
|
+
const cv.CAP_FIREWARE 300
|
2319
|
+
const cv.CAP_FIREWIRE CAP_FIREWARE
|
2320
|
+
const cv.CAP_IEEE1394 CAP_FIREWARE
|
2321
|
+
const cv.CAP_DC1394 CAP_FIREWARE
|
2322
|
+
const cv.CAP_CMU1394 CAP_FIREWARE
|
2323
|
+
const cv.CAP_QT 500
|
2324
|
+
const cv.CAP_UNICAP 600
|
2325
|
+
const cv.CAP_DSHOW 700
|
2326
|
+
const cv.CAP_PVAPI 800
|
2327
|
+
const cv.CAP_OPENNI 900
|
2328
|
+
const cv.CAP_OPENNI_ASUS 910
|
2329
|
+
const cv.CAP_ANDROID 1000
|
2330
|
+
const cv.CAP_XIAPI 1100
|
2331
|
+
const cv.CAP_AVFOUNDATION 1200
|
2332
|
+
const cv.CAP_GIGANETIX 1300
|
2333
|
+
const cv.CAP_MSMF 1400
|
2334
|
+
const cv.CAP_PROP_POS_MSEC 0
|
2335
|
+
const cv.CAP_PROP_POS_FRAMES 1
|
2336
|
+
const cv.CAP_PROP_POS_AVI_RATIO 2
|
2337
|
+
const cv.CAP_PROP_FRAME_WIDTH 3
|
2338
|
+
const cv.CAP_PROP_FRAME_HEIGHT 4
|
2339
|
+
const cv.CAP_PROP_FPS 5
|
2340
|
+
const cv.CAP_PROP_FOURCC 6
|
2341
|
+
const cv.CAP_PROP_FRAME_COUNT 7
|
2342
|
+
const cv.CAP_PROP_FORMAT 8
|
2343
|
+
const cv.CAP_PROP_MODE 9
|
2344
|
+
const cv.CAP_PROP_BRIGHTNESS 10
|
2345
|
+
const cv.CAP_PROP_CONTRAST 11
|
2346
|
+
const cv.CAP_PROP_SATURATION 12
|
2347
|
+
const cv.CAP_PROP_HUE 13
|
2348
|
+
const cv.CAP_PROP_GAIN 14
|
2349
|
+
const cv.CAP_PROP_EXPOSURE 15
|
2350
|
+
const cv.CAP_PROP_CONVERT_RGB 16
|
2351
|
+
const cv.CAP_PROP_WHITE_BALANCE_BLUE_U 17
|
2352
|
+
const cv.CAP_PROP_RECTIFICATION 18
|
2353
|
+
const cv.CAP_PROP_MONOCROME 19
|
2354
|
+
const cv.CAP_PROP_SHARPNESS 20
|
2355
|
+
const cv.CAP_PROP_AUTO_EXPOSURE 21
|
2356
|
+
const cv.CAP_PROP_GAMMA 22
|
2357
|
+
const cv.CAP_PROP_TEMPERATURE 23
|
2358
|
+
const cv.CAP_PROP_TRIGGER 24
|
2359
|
+
const cv.CAP_PROP_TRIGGER_DELAY 25
|
2360
|
+
const cv.CAP_PROP_WHITE_BALANCE_RED_V 26
|
2361
|
+
const cv.CAP_PROP_ZOOM 27
|
2362
|
+
const cv.CAP_PROP_FOCUS 28
|
2363
|
+
const cv.CAP_PROP_GUID 29
|
2364
|
+
const cv.CAP_PROP_ISO_SPEED 30
|
2365
|
+
const cv.CAP_PROP_BACKLIGHT 32
|
2366
|
+
const cv.CAP_PROP_PAN 33
|
2367
|
+
const cv.CAP_PROP_TILT 34
|
2368
|
+
const cv.CAP_PROP_ROLL 35
|
2369
|
+
const cv.CAP_PROP_IRIS 36
|
2370
|
+
const cv.CAP_PROP_SETTINGS 37
|
2371
|
+
const cv.CAP_PROP_DC1394_OFF -4
|
2372
|
+
const cv.CAP_PROP_DC1394_MODE_MANUAL -3
|
2373
|
+
const cv.CAP_PROP_DC1394_MODE_AUTO -2
|
2374
|
+
const cv.CAP_PROP_DC1394_MODE_ONE_PUSH_AUTO -1
|
2375
|
+
const cv.CAP_PROP_DC1394_MAX 31
|
2376
|
+
const cv.CAP_OPENNI_DEPTH_GENERATOR 1 << 31
|
2377
|
+
const cv.CAP_OPENNI_IMAGE_GENERATOR 1 << 30
|
2378
|
+
const cv.CAP_OPENNI_GENERATORS_MASK CAP_OPENNI_DEPTH_GENERATOR + CAP_OPENNI_IMAGE_GENERATOR
|
2379
|
+
const cv.CAP_PROP_OPENNI_OUTPUT_MODE 100
|
2380
|
+
const cv.CAP_PROP_OPENNI_FRAME_MAX_DEPTH 101
|
2381
|
+
const cv.CAP_PROP_OPENNI_BASELINE 102
|
2382
|
+
const cv.CAP_PROP_OPENNI_FOCAL_LENGTH 103
|
2383
|
+
const cv.CAP_PROP_OPENNI_REGISTRATION 104
|
2384
|
+
const cv.CAP_PROP_OPENNI_REGISTRATION_ON CAP_PROP_OPENNI_REGISTRATION
|
2385
|
+
const cv.CAP_PROP_OPENNI_APPROX_FRAME_SYNC 105
|
2386
|
+
const cv.CAP_PROP_OPENNI_MAX_BUFFER_SIZE 106
|
2387
|
+
const cv.CAP_PROP_OPENNI_CIRCLE_BUFFER 107
|
2388
|
+
const cv.CAP_PROP_OPENNI_MAX_TIME_DURATION 108
|
2389
|
+
const cv.CAP_PROP_OPENNI_GENERATOR_PRESENT 109
|
2390
|
+
const cv.CAP_OPENNI_IMAGE_GENERATOR_PRESENT CAP_OPENNI_IMAGE_GENERATOR + CAP_PROP_OPENNI_GENERATOR_PRESENT
|
2391
|
+
const cv.CAP_OPENNI_IMAGE_GENERATOR_OUTPUT_MODE CAP_OPENNI_IMAGE_GENERATOR + CAP_PROP_OPENNI_OUTPUT_MODE
|
2392
|
+
const cv.CAP_OPENNI_DEPTH_GENERATOR_BASELINE CAP_OPENNI_DEPTH_GENERATOR + CAP_PROP_OPENNI_BASELINE
|
2393
|
+
const cv.CAP_OPENNI_DEPTH_GENERATOR_FOCAL_LENGTH CAP_OPENNI_DEPTH_GENERATOR + CAP_PROP_OPENNI_FOCAL_LENGTH
|
2394
|
+
const cv.CAP_OPENNI_DEPTH_GENERATOR_REGISTRATION CAP_OPENNI_DEPTH_GENERATOR + CAP_PROP_OPENNI_REGISTRATION
|
2395
|
+
const cv.CAP_OPENNI_DEPTH_GENERATOR_REGISTRATION_ON CAP_OPENNI_DEPTH_GENERATOR_REGISTRATION
|
2396
|
+
const cv.CAP_OPENNI_DEPTH_MAP 0
|
2397
|
+
const cv.CAP_OPENNI_POINT_CLOUD_MAP 1
|
2398
|
+
const cv.CAP_OPENNI_DISPARITY_MAP 2
|
2399
|
+
const cv.CAP_OPENNI_DISPARITY_MAP_32F 3
|
2400
|
+
const cv.CAP_OPENNI_VALID_DEPTH_MASK 4
|
2401
|
+
const cv.CAP_OPENNI_BGR_IMAGE 5
|
2402
|
+
const cv.CAP_OPENNI_GRAY_IMAGE 6
|
2403
|
+
const cv.CAP_OPENNI_VGA_30HZ 0
|
2404
|
+
const cv.CAP_OPENNI_SXGA_15HZ 1
|
2405
|
+
const cv.CAP_OPENNI_SXGA_30HZ 2
|
2406
|
+
const cv.CAP_OPENNI_QVGA_30HZ 3
|
2407
|
+
const cv.CAP_OPENNI_QVGA_60HZ 4
|
2408
|
+
const cv.CAP_PROP_GSTREAMER_QUEUE_LENGTH 200
|
2409
|
+
const cv.CAP_PROP_PVAPI_MULTICASTIP 300
|
2410
|
+
const cv.CAP_PROP_XI_DOWNSAMPLING 400
|
2411
|
+
const cv.CAP_PROP_XI_DATA_FORMAT 401
|
2412
|
+
const cv.CAP_PROP_XI_OFFSET_X 402
|
2413
|
+
const cv.CAP_PROP_XI_OFFSET_Y 403
|
2414
|
+
const cv.CAP_PROP_XI_TRG_SOURCE 404
|
2415
|
+
const cv.CAP_PROP_XI_TRG_SOFTWARE 405
|
2416
|
+
const cv.CAP_PROP_XI_GPI_SELECTOR 406
|
2417
|
+
const cv.CAP_PROP_XI_GPI_MODE 407
|
2418
|
+
const cv.CAP_PROP_XI_GPI_LEVEL 408
|
2419
|
+
const cv.CAP_PROP_XI_GPO_SELECTOR 409
|
2420
|
+
const cv.CAP_PROP_XI_GPO_MODE 410
|
2421
|
+
const cv.CAP_PROP_XI_LED_SELECTOR 411
|
2422
|
+
const cv.CAP_PROP_XI_LED_MODE 412
|
2423
|
+
const cv.CAP_PROP_XI_MANUAL_WB 413
|
2424
|
+
const cv.CAP_PROP_XI_AUTO_WB 414
|
2425
|
+
const cv.CAP_PROP_XI_AEAG 415
|
2426
|
+
const cv.CAP_PROP_XI_EXP_PRIORITY 416
|
2427
|
+
const cv.CAP_PROP_XI_AE_MAX_LIMIT 417
|
2428
|
+
const cv.CAP_PROP_XI_AG_MAX_LIMIT 418
|
2429
|
+
const cv.CAP_PROP_XI_AEAG_LEVEL 419
|
2430
|
+
const cv.CAP_PROP_XI_TIMEOUT 420
|
2431
|
+
const cv.CAP_PROP_ANDROID_AUTOGRAB 1024
|
2432
|
+
const cv.CAP_PROP_ANDROID_PREVIEW_SIZES_STRING 1025
|
2433
|
+
const cv.CAP_PROP_ANDROID_PREVIEW_FORMAT 1026
|
2434
|
+
const cv.CAP_PROP_ANDROID_FLASH_MODE 8001
|
2435
|
+
const cv.CAP_PROP_ANDROID_FOCUS_MODE 8002
|
2436
|
+
const cv.CAP_PROP_ANDROID_WHITE_BALANCE 8003
|
2437
|
+
const cv.CAP_PROP_ANDROID_ANTIBANDING 8004
|
2438
|
+
const cv.CAP_PROP_ANDROID_FOCAL_LENGTH 8005
|
2439
|
+
const cv.CAP_PROP_ANDROID_FOCUS_DISTANCE_NEAR 8006
|
2440
|
+
const cv.CAP_PROP_ANDROID_FOCUS_DISTANCE_OPTIMAL 8007
|
2441
|
+
const cv.CAP_PROP_ANDROID_FOCUS_DISTANCE_FAR 8008
|
2442
|
+
const cv.CAP_ANDROID_COLOR_FRAME_BGR 0
|
2443
|
+
const cv.CAP_ANDROID_COLOR_FRAME CAP_ANDROID_COLOR_FRAME_BGR
|
2444
|
+
const cv.CAP_ANDROID_GREY_FRAME 1
|
2445
|
+
const cv.CAP_ANDROID_COLOR_FRAME_RGB 2
|
2446
|
+
const cv.CAP_ANDROID_COLOR_FRAME_BGRA 3
|
2447
|
+
const cv.CAP_ANDROID_COLOR_FRAME_RGBA 4
|
2448
|
+
const cv.CAP_ANDROID_FLASH_MODE_AUTO 0
|
2449
|
+
const cv.CAP_ANDROID_FLASH_MODE_OFF 1
|
2450
|
+
const cv.CAP_ANDROID_FLASH_MODE_ON 2
|
2451
|
+
const cv.CAP_ANDROID_FLASH_MODE_RED_EYE 3
|
2452
|
+
const cv.CAP_ANDROID_FLASH_MODE_TORCH 4
|
2453
|
+
const cv.CAP_ANDROID_FOCUS_MODE_AUTO 0
|
2454
|
+
const cv.CAP_ANDROID_FOCUS_MODE_CONTINUOUS_VIDEO 1
|
2455
|
+
const cv.CAP_ANDROID_FOCUS_MODE_EDOF 2
|
2456
|
+
const cv.CAP_ANDROID_FOCUS_MODE_FIXED 3
|
2457
|
+
const cv.CAP_ANDROID_FOCUS_MODE_INFINITY 4
|
2458
|
+
const cv.CAP_ANDROID_FOCUS_MODE_MACRO 5
|
2459
|
+
const cv.CAP_ANDROID_WHITE_BALANCE_AUTO 0
|
2460
|
+
const cv.CAP_ANDROID_WHITE_BALANCE_CLOUDY_DAYLIGHT 1
|
2461
|
+
const cv.CAP_ANDROID_WHITE_BALANCE_DAYLIGHT 2
|
2462
|
+
const cv.CAP_ANDROID_WHITE_BALANCE_FLUORESCENT 3
|
2463
|
+
const cv.CAP_ANDROID_WHITE_BALANCE_INCANDESCENT 4
|
2464
|
+
const cv.CAP_ANDROID_WHITE_BALANCE_SHADE 5
|
2465
|
+
const cv.CAP_ANDROID_WHITE_BALANCE_TWILIGHT 6
|
2466
|
+
const cv.CAP_ANDROID_WHITE_BALANCE_WARM_FLUORESCENT 7
|
2467
|
+
const cv.CAP_ANDROID_ANTIBANDING_50HZ 0
|
2468
|
+
const cv.CAP_ANDROID_ANTIBANDING_60HZ 1
|
2469
|
+
const cv.CAP_ANDROID_ANTIBANDING_AUTO 2
|
2470
|
+
const cv.CAP_ANDROID_ANTIBANDING_OFF 3
|
2471
|
+
const cv.CAP_PROP_IOS_DEVICE_FOCUS 9001
|
2472
|
+
const cv.CAP_PROP_IOS_DEVICE_EXPOSURE 9002
|
2473
|
+
const cv.CAP_PROP_IOS_DEVICE_FLASH 9003
|
2474
|
+
const cv.CAP_PROP_IOS_DEVICE_WHITEBALANCE 9004
|
2475
|
+
const cv.CAP_PROP_IOS_DEVICE_TORCH 9005
|
2476
|
+
const cv.CAP_PROP_GIGA_FRAME_OFFSET_X 10001
|
2477
|
+
const cv.CAP_PROP_GIGA_FRAME_OFFSET_Y 10002
|
2478
|
+
const cv.CAP_PROP_GIGA_FRAME_WIDTH_MAX 10003
|
2479
|
+
const cv.CAP_PROP_GIGA_FRAME_HEIGH_MAX 10004
|
2480
|
+
const cv.CAP_PROP_GIGA_FRAME_SENS_WIDTH 10005
|
2481
|
+
const cv.CAP_PROP_GIGA_FRAME_SENS_HEIGH 10006
|
2482
|
+
class cv.VideoCapture
|
2483
|
+
cv.VideoCapture.VideoCapture
|
2484
|
+
cv.VideoCapture.VideoCapture
|
2485
|
+
String filename
|
2486
|
+
cv.VideoCapture.VideoCapture
|
2487
|
+
int device
|
2488
|
+
cv.VideoCapture.open bool
|
2489
|
+
String filename
|
2490
|
+
cv.VideoCapture.open bool
|
2491
|
+
int device
|
2492
|
+
cv.VideoCapture.isOpened bool
|
2493
|
+
cv.VideoCapture.release void
|
2494
|
+
cv.VideoCapture.grab bool
|
2495
|
+
cv.VideoCapture.retrieve bool
|
2496
|
+
Mat image /O
|
2497
|
+
int flag 0
|
2498
|
+
cv.VideoCapture.read bool
|
2499
|
+
Mat image /O
|
2500
|
+
cv.VideoCapture.set bool
|
2501
|
+
int propId
|
2502
|
+
double value
|
2503
|
+
cv.VideoCapture.get double
|
2504
|
+
int propId
|
2505
|
+
class cv.VideoWriter
|
2506
|
+
cv.VideoWriter.VideoWriter
|
2507
|
+
cv.VideoWriter.VideoWriter
|
2508
|
+
String filename
|
2509
|
+
int fourcc
|
2510
|
+
double fps
|
2511
|
+
Size frameSize
|
2512
|
+
bool isColor true
|
2513
|
+
cv.VideoWriter.open bool
|
2514
|
+
String filename
|
2515
|
+
int fourcc
|
2516
|
+
double fps
|
2517
|
+
Size frameSize
|
2518
|
+
bool isColor true
|
2519
|
+
cv.VideoWriter.isOpened bool
|
2520
|
+
cv.VideoWriter.release void
|
2521
|
+
cv.VideoWriter.write void
|
2522
|
+
Mat image
|
2523
|
+
cv.VideoWriter.fourcc int /S
|
2524
|
+
char c1
|
2525
|
+
char c2
|
2526
|
+
char c3
|
2527
|
+
char c4
|
2528
|
+
class CvStatModel
|
2529
|
+
CvStatModel.save void
|
2530
|
+
c_string filename
|
2531
|
+
c_string name 0
|
2532
|
+
CvStatModel.load void
|
2533
|
+
c_string filename
|
2534
|
+
c_string name 0
|
2535
|
+
struct CvParamGrid /Map
|
2536
|
+
double min_val /RW
|
2537
|
+
double max_val /RW
|
2538
|
+
double step /RW
|
2539
|
+
const CvParamGrid.SVM_C 0
|
2540
|
+
const CvParamGrid.SVM_GAMMA 1
|
2541
|
+
const CvParamGrid.SVM_P 2
|
2542
|
+
const CvParamGrid.SVM_NU 3
|
2543
|
+
const CvParamGrid.SVM_COEF 4
|
2544
|
+
const CvParamGrid.SVM_DEGREE 5
|
2545
|
+
class CvNormalBayesClassifier : CvStatModel
|
2546
|
+
CvNormalBayesClassifier.CvNormalBayesClassifier
|
2547
|
+
CvNormalBayesClassifier.clear void
|
2548
|
+
CvNormalBayesClassifier.CvNormalBayesClassifier
|
2549
|
+
Mat trainData
|
2550
|
+
Mat responses
|
2551
|
+
Mat varIdx cv::Mat()
|
2552
|
+
Mat sampleIdx cv::Mat()
|
2553
|
+
CvNormalBayesClassifier.train bool
|
2554
|
+
Mat trainData
|
2555
|
+
Mat responses
|
2556
|
+
Mat varIdx cv::Mat()
|
2557
|
+
Mat sampleIdx cv::Mat()
|
2558
|
+
bool update false
|
2559
|
+
CvNormalBayesClassifier.predict float
|
2560
|
+
Mat samples
|
2561
|
+
Mat* results 0 /O
|
2562
|
+
class CvKNearest : CvStatModel
|
2563
|
+
CvKNearest.CvKNearest
|
2564
|
+
CvKNearest.CvKNearest
|
2565
|
+
Mat trainData
|
2566
|
+
Mat responses
|
2567
|
+
Mat sampleIdx cv::Mat()
|
2568
|
+
bool isRegression false
|
2569
|
+
int max_k 32
|
2570
|
+
CvKNearest.train bool
|
2571
|
+
Mat trainData
|
2572
|
+
Mat responses
|
2573
|
+
Mat sampleIdx cv::Mat()
|
2574
|
+
bool isRegression false
|
2575
|
+
int maxK 32
|
2576
|
+
bool updateBase false
|
2577
|
+
CvKNearest.find_nearest float
|
2578
|
+
Mat samples
|
2579
|
+
int k
|
2580
|
+
Mat results /O
|
2581
|
+
Mat neighborResponses /O
|
2582
|
+
Mat dists /O
|
2583
|
+
struct CvSVMParams /Map
|
2584
|
+
int svm_type /RW
|
2585
|
+
int kernel_type /RW
|
2586
|
+
double degree /RW
|
2587
|
+
double gamma /RW
|
2588
|
+
double coef0 /RW
|
2589
|
+
double C /RW
|
2590
|
+
double nu /RW
|
2591
|
+
double p /RW
|
2592
|
+
CvTermCriteria term_crit /RW
|
2593
|
+
class CvSVM : CvStatModel
|
2594
|
+
const CvSVM.C_SVC 100
|
2595
|
+
const CvSVM.NU_SVC 101
|
2596
|
+
const CvSVM.ONE_CLASS 102
|
2597
|
+
const CvSVM.EPS_SVR 103
|
2598
|
+
const CvSVM.NU_SVR 104
|
2599
|
+
const CvSVM.LINEAR 0
|
2600
|
+
const CvSVM.POLY 1
|
2601
|
+
const CvSVM.RBF 2
|
2602
|
+
const CvSVM.SIGMOID 3
|
2603
|
+
const CvSVM.CHI2 4
|
2604
|
+
const CvSVM.INTER 5
|
2605
|
+
const CvSVM.C 0
|
2606
|
+
const CvSVM.GAMMA 1
|
2607
|
+
const CvSVM.P 2
|
2608
|
+
const CvSVM.NU 3
|
2609
|
+
const CvSVM.COEF 4
|
2610
|
+
const CvSVM.DEGREE 5
|
2611
|
+
CvSVM.CvSVM
|
2612
|
+
CvSVM.CvSVM
|
2613
|
+
Mat trainData
|
2614
|
+
Mat responses
|
2615
|
+
Mat varIdx cv::Mat()
|
2616
|
+
Mat sampleIdx cv::Mat()
|
2617
|
+
CvSVMParams params CvSVMParams()
|
2618
|
+
CvSVM.train bool
|
2619
|
+
Mat trainData
|
2620
|
+
Mat responses
|
2621
|
+
Mat varIdx cv::Mat()
|
2622
|
+
Mat sampleIdx cv::Mat()
|
2623
|
+
CvSVMParams params CvSVMParams()
|
2624
|
+
CvSVM.train_auto bool
|
2625
|
+
Mat trainData
|
2626
|
+
Mat responses
|
2627
|
+
Mat varIdx
|
2628
|
+
Mat sampleIdx
|
2629
|
+
CvSVMParams params
|
2630
|
+
int k_fold 10
|
2631
|
+
CvParamGrid Cgrid CvSVM::get_default_grid(CvSVM::C)
|
2632
|
+
CvParamGrid gammaGrid CvSVM::get_default_grid(CvSVM::GAMMA)
|
2633
|
+
CvParamGrid pGrid CvSVM::get_default_grid(CvSVM::P)
|
2634
|
+
CvParamGrid nuGrid CvSVM::get_default_grid(CvSVM::NU)
|
2635
|
+
CvParamGrid coeffGrid CvSVM::get_default_grid(CvSVM::COEF)
|
2636
|
+
CvParamGrid degreeGrid CvSVM::get_default_grid(CvSVM::DEGREE)
|
2637
|
+
bool balanced false
|
2638
|
+
CvSVM.predict float
|
2639
|
+
Mat sample
|
2640
|
+
bool returnDFVal false
|
2641
|
+
CvSVM.predict void =predict_all
|
2642
|
+
Mat samples
|
2643
|
+
Mat results /O
|
2644
|
+
CvSVM.get_support_vector_count int
|
2645
|
+
CvSVM.clear void
|
2646
|
+
CvSVM.get_var_count int
|
2647
|
+
class cv.EM : cv::Algorithm
|
2648
|
+
const cv.EM.COV_MAT_SPHERICAL 0
|
2649
|
+
const cv.EM.COV_MAT_DIAGONAL 1
|
2650
|
+
const cv.EM.COV_MAT_GENERIC 2
|
2651
|
+
const cv.EM.COV_MAT_DEFAULT COV_MAT_DIAGONAL
|
2652
|
+
const cv.EM.DEFAULT_NCLUSTERS 5
|
2653
|
+
const cv.EM.DEFAULT_MAX_ITERS 100
|
2654
|
+
const cv.EM.START_E_STEP 1
|
2655
|
+
const cv.EM.START_M_STEP 2
|
2656
|
+
const cv.EM.START_AUTO_STEP 0
|
2657
|
+
cv.EM.EM
|
2658
|
+
int nclusters EM::DEFAULT_NCLUSTERS
|
2659
|
+
int covMatType EM::COV_MAT_DIAGONAL
|
2660
|
+
TermCriteria termCrit TermCriteria(TermCriteria::COUNT+TermCriteria::EPS, EM::DEFAULT_MAX_ITERS, FLT_EPSILON)
|
2661
|
+
cv.EM.clear void
|
2662
|
+
cv.EM.train bool
|
2663
|
+
Mat samples
|
2664
|
+
Mat logLikelihoods Mat() /O
|
2665
|
+
Mat labels Mat() /O
|
2666
|
+
Mat probs Mat() /O
|
2667
|
+
cv.EM.trainE bool
|
2668
|
+
Mat samples
|
2669
|
+
Mat means0
|
2670
|
+
Mat covs0 Mat()
|
2671
|
+
Mat weights0 Mat()
|
2672
|
+
Mat logLikelihoods Mat() /O
|
2673
|
+
Mat labels Mat() /O
|
2674
|
+
Mat probs Mat() /O
|
2675
|
+
cv.EM.trainM bool
|
2676
|
+
Mat samples
|
2677
|
+
Mat probs0
|
2678
|
+
Mat logLikelihoods Mat() /O
|
2679
|
+
Mat labels Mat() /O
|
2680
|
+
Mat probs Mat() /O
|
2681
|
+
cv.EM.predict Vec2d
|
2682
|
+
Mat sample
|
2683
|
+
Mat probs Mat() /O
|
2684
|
+
cv.EM.isTrained bool
|
2685
|
+
struct CvDTreeParams /Map
|
2686
|
+
int max_categories /RW
|
2687
|
+
int max_depth /RW
|
2688
|
+
int min_sample_count /RW
|
2689
|
+
int cv_folds /RW
|
2690
|
+
bool use_surrogates /RW
|
2691
|
+
bool use_1se_rule /RW
|
2692
|
+
bool truncate_pruned_tree /RW
|
2693
|
+
float regression_accuracy /RW
|
2694
|
+
class CvDTree : CvStatModel
|
2695
|
+
CvDTree.CvDTree
|
2696
|
+
CvDTree.train bool
|
2697
|
+
Mat trainData
|
2698
|
+
int tflag
|
2699
|
+
Mat responses
|
2700
|
+
Mat varIdx cv::Mat()
|
2701
|
+
Mat sampleIdx cv::Mat()
|
2702
|
+
Mat varType cv::Mat()
|
2703
|
+
Mat missingDataMask cv::Mat()
|
2704
|
+
CvDTreeParams params CvDTreeParams()
|
2705
|
+
CvDTree.predict CvDTreeNode*
|
2706
|
+
Mat sample
|
2707
|
+
Mat missingDataMask cv::Mat()
|
2708
|
+
bool preprocessedInput false
|
2709
|
+
CvDTree.getVarImportance Mat
|
2710
|
+
CvDTree.clear void
|
2711
|
+
struct CvRTParams : CvDTreeParams /Map
|
2712
|
+
bool calc_var_importance /RW
|
2713
|
+
int nactive_vars /RW
|
2714
|
+
CvTermCriteria term_crit /RW
|
2715
|
+
class CvRTrees : CvStatModel
|
2716
|
+
CvRTrees.CvRTrees
|
2717
|
+
CvRTrees.train bool
|
2718
|
+
Mat trainData
|
2719
|
+
int tflag
|
2720
|
+
Mat responses
|
2721
|
+
Mat varIdx cv::Mat()
|
2722
|
+
Mat sampleIdx cv::Mat()
|
2723
|
+
Mat varType cv::Mat()
|
2724
|
+
Mat missingDataMask cv::Mat()
|
2725
|
+
CvRTParams params CvRTParams()
|
2726
|
+
CvRTrees.predict float
|
2727
|
+
Mat sample
|
2728
|
+
Mat missing cv::Mat()
|
2729
|
+
CvRTrees.predict_prob float
|
2730
|
+
Mat sample
|
2731
|
+
Mat missing cv::Mat()
|
2732
|
+
CvRTrees.getVarImportance Mat
|
2733
|
+
CvRTrees.clear void
|
2734
|
+
class CvERTrees : CvRTrees
|
2735
|
+
CvERTrees.CvERTrees
|
2736
|
+
CvERTrees.train bool
|
2737
|
+
Mat trainData
|
2738
|
+
int tflag
|
2739
|
+
Mat responses
|
2740
|
+
Mat varIdx cv::Mat()
|
2741
|
+
Mat sampleIdx cv::Mat()
|
2742
|
+
Mat varType cv::Mat()
|
2743
|
+
Mat missingDataMask cv::Mat()
|
2744
|
+
CvRTParams params CvRTParams()
|
2745
|
+
struct CvBoostParams : CvDTreeParams /Map
|
2746
|
+
int boost_type /RW
|
2747
|
+
int weak_count /RW
|
2748
|
+
int split_criteria /RW
|
2749
|
+
double weight_trim_rate /RW
|
2750
|
+
class CvBoost : CvStatModel
|
2751
|
+
const CvBoost.DISCRETE 0
|
2752
|
+
const CvBoost.REAL 1
|
2753
|
+
const CvBoost.LOGIT 2
|
2754
|
+
const CvBoost.GENTLE 3
|
2755
|
+
const CvBoost.DEFAULT 0
|
2756
|
+
const CvBoost.GINI 1
|
2757
|
+
const CvBoost.MISCLASS 3
|
2758
|
+
const CvBoost.SQERR 4
|
2759
|
+
CvBoost.CvBoost
|
2760
|
+
CvBoost.CvBoost
|
2761
|
+
Mat trainData
|
2762
|
+
int tflag
|
2763
|
+
Mat responses
|
2764
|
+
Mat varIdx cv::Mat()
|
2765
|
+
Mat sampleIdx cv::Mat()
|
2766
|
+
Mat varType cv::Mat()
|
2767
|
+
Mat missingDataMask cv::Mat()
|
2768
|
+
CvBoostParams params CvBoostParams()
|
2769
|
+
CvBoost.train bool
|
2770
|
+
Mat trainData
|
2771
|
+
int tflag
|
2772
|
+
Mat responses
|
2773
|
+
Mat varIdx cv::Mat()
|
2774
|
+
Mat sampleIdx cv::Mat()
|
2775
|
+
Mat varType cv::Mat()
|
2776
|
+
Mat missingDataMask cv::Mat()
|
2777
|
+
CvBoostParams params CvBoostParams()
|
2778
|
+
bool update false
|
2779
|
+
CvBoost.predict float
|
2780
|
+
Mat sample
|
2781
|
+
Mat missing cv::Mat()
|
2782
|
+
Range slice cv::Range::all()
|
2783
|
+
bool rawMode false
|
2784
|
+
bool returnSum false
|
2785
|
+
CvBoost.prune void
|
2786
|
+
CvSlice slice
|
2787
|
+
CvBoost.clear void
|
2788
|
+
struct CvGBTreesParams : CvDTreeParams /Map
|
2789
|
+
int weak_count /RW
|
2790
|
+
int loss_function_type /RW
|
2791
|
+
float subsample_portion /RW
|
2792
|
+
float shrinkage /RW
|
2793
|
+
class CvGBTrees : CvStatModel
|
2794
|
+
const CvGBTrees.SQUARED_LOSS 0
|
2795
|
+
const CvGBTrees.ABSOLUTE_LOSS 0+1
|
2796
|
+
const CvGBTrees.HUBER_LOSS 3
|
2797
|
+
const CvGBTrees.DEVIANCE_LOSS 3+1
|
2798
|
+
CvGBTrees.CvGBTrees
|
2799
|
+
CvGBTrees.clear void
|
2800
|
+
CvGBTrees.CvGBTrees
|
2801
|
+
Mat trainData
|
2802
|
+
int tflag
|
2803
|
+
Mat responses
|
2804
|
+
Mat varIdx cv::Mat()
|
2805
|
+
Mat sampleIdx cv::Mat()
|
2806
|
+
Mat varType cv::Mat()
|
2807
|
+
Mat missingDataMask cv::Mat()
|
2808
|
+
CvGBTreesParams params CvGBTreesParams()
|
2809
|
+
CvGBTrees.train bool
|
2810
|
+
Mat trainData
|
2811
|
+
int tflag
|
2812
|
+
Mat responses
|
2813
|
+
Mat varIdx cv::Mat()
|
2814
|
+
Mat sampleIdx cv::Mat()
|
2815
|
+
Mat varType cv::Mat()
|
2816
|
+
Mat missingDataMask cv::Mat()
|
2817
|
+
CvGBTreesParams params CvGBTreesParams()
|
2818
|
+
bool update false
|
2819
|
+
CvGBTrees.predict float
|
2820
|
+
Mat sample
|
2821
|
+
Mat missing cv::Mat()
|
2822
|
+
Range slice cv::Range::all()
|
2823
|
+
int k -1
|
2824
|
+
struct CvANN_MLP_TrainParams /Map
|
2825
|
+
CvTermCriteria term_crit /RW
|
2826
|
+
int train_method /RW
|
2827
|
+
double bp_dw_scale /RW
|
2828
|
+
double bp_moment_scale /RW
|
2829
|
+
double rp_dw0 /RW
|
2830
|
+
double rp_dw_plus /RW
|
2831
|
+
double rp_dw_minus /RW
|
2832
|
+
double rp_dw_min /RW
|
2833
|
+
double rp_dw_max /RW
|
2834
|
+
const CvANN_MLP_TrainParams.BACKPROP 0
|
2835
|
+
const CvANN_MLP_TrainParams.RPROP 1
|
2836
|
+
class CvANN_MLP : CvStatModel
|
2837
|
+
CvANN_MLP.CvANN_MLP
|
2838
|
+
CvANN_MLP.CvANN_MLP
|
2839
|
+
Mat layerSizes
|
2840
|
+
int activateFunc CvANN_MLP::SIGMOID_SYM
|
2841
|
+
double fparam1 0
|
2842
|
+
double fparam2 0
|
2843
|
+
CvANN_MLP.create void
|
2844
|
+
Mat layerSizes
|
2845
|
+
int activateFunc CvANN_MLP::SIGMOID_SYM
|
2846
|
+
double fparam1 0
|
2847
|
+
double fparam2 0
|
2848
|
+
CvANN_MLP.train int
|
2849
|
+
Mat inputs
|
2850
|
+
Mat outputs
|
2851
|
+
Mat sampleWeights
|
2852
|
+
Mat sampleIdx cv::Mat()
|
2853
|
+
CvANN_MLP_TrainParams params CvANN_MLP_TrainParams()
|
2854
|
+
int flags 0
|
2855
|
+
CvANN_MLP.predict float
|
2856
|
+
Mat inputs
|
2857
|
+
Mat outputs /O
|
2858
|
+
CvANN_MLP.clear void
|
2859
|
+
const CvANN_MLP.IDENTITY 0
|
2860
|
+
const CvANN_MLP.SIGMOID_SYM 1
|
2861
|
+
const CvANN_MLP.GAUSSIAN 2
|
2862
|
+
const CvANN_MLP.UPDATE_WEIGHTS 1
|
2863
|
+
const CvANN_MLP.NO_INPUT_SCALE 2
|
2864
|
+
const CvANN_MLP.NO_OUTPUT_SCALE 4
|
2865
|
+
const cvtest.TS.NUL 0
|
2866
|
+
const cvtest.TS.SUMMARY_IDX 0
|
2867
|
+
const cvtest.TS.SUMMARY 1 << SUMMARY_IDX
|
2868
|
+
const cvtest.TS.LOG_IDX 1
|
2869
|
+
const cvtest.TS.LOG 1 << LOG_IDX
|
2870
|
+
const cvtest.TS.CSV_IDX 2
|
2871
|
+
const cvtest.TS.CSV 1 << CSV_IDX
|
2872
|
+
const cvtest.TS.CONSOLE_IDX 3
|
2873
|
+
const cvtest.TS.CONSOLE 1 << CONSOLE_IDX
|
2874
|
+
const cvtest.TS.MAX_IDX 4
|
2875
|
+
const cvtest.TS.OK 0
|
2876
|
+
const cvtest.TS.FAIL_GENERIC -1
|
2877
|
+
const cvtest.TS.FAIL_MISSING_TEST_DATA -2
|
2878
|
+
const cvtest.TS.FAIL_ERROR_IN_CALLED_FUNC -3
|
2879
|
+
const cvtest.TS.FAIL_EXCEPTION -4
|
2880
|
+
const cvtest.TS.FAIL_MEMORY_EXCEPTION -5
|
2881
|
+
const cvtest.TS.FAIL_ARITHM_EXCEPTION -6
|
2882
|
+
const cvtest.TS.FAIL_MEMORY_CORRUPTION_BEGIN -7
|
2883
|
+
const cvtest.TS.FAIL_MEMORY_CORRUPTION_END -8
|
2884
|
+
const cvtest.TS.FAIL_MEMORY_LEAK -9
|
2885
|
+
const cvtest.TS.FAIL_INVALID_OUTPUT -10
|
2886
|
+
const cvtest.TS.FAIL_MISMATCH -11
|
2887
|
+
const cvtest.TS.FAIL_BAD_ACCURACY -12
|
2888
|
+
const cvtest.TS.FAIL_HANG -13
|
2889
|
+
const cvtest.TS.FAIL_BAD_ARG_CHECK -14
|
2890
|
+
const cvtest.TS.FAIL_INVALID_TEST_DATA -15
|
2891
|
+
const cvtest.TS.SKIPPED 1
|
2892
|
+
const cv.gpu.device.EXCLUSIVE 0
|
2893
|
+
const cv.gpu.device.INCLUSIVE 1
|
2894
|
+
const cv.gpu.device.color_detail.yuv_shift 14
|
2895
|
+
const cv.gpu.device.color_detail.xyz_shift 12
|
2896
|
+
const cv.gpu.device.color_detail.R2Y 4899
|
2897
|
+
const cv.gpu.device.color_detail.G2Y 9617
|
2898
|
+
const cv.gpu.device.color_detail.B2Y 1868
|
2899
|
+
const cv.gpu.device.color_detail.BLOCK_SIZE 256
|
2900
|
+
const cv.gpu.device.color_detail.LAB_CBRT_TAB_SIZE 1024
|
2901
|
+
const cv.gpu.device.color_detail.GAMMA_TAB_SIZE 1024
|
2902
|
+
const cv.gpu.device.color_detail.lab_shift xyz_shift
|
2903
|
+
const cv.gpu.device.color_detail.gamma_shift 3
|
2904
|
+
const cv.gpu.device.color_detail.lab_shift2 (lab_shift + gamma_shift)
|
2905
|
+
const cv.gpu.device.color_detail.LAB_CBRT_TAB_SIZE_B (256 * 3 / 2 * (1 << gamma_shift))
|
2906
|
+
const cv.gpu.device.Emulation.smem.TAG_MASK (1U << ( (sizeof(unsigned int) << 3) - 5U)) - 1U
|
2907
|
+
const cv.gpu.device.Warp.LOG_WARP_SIZE 5
|
2908
|
+
const cv.gpu.device.Warp.WARP_SIZE 1 << LOG_WARP_SIZE
|
2909
|
+
const cv.gpu.device.Warp.STRIDE WARP_SIZE
|
2910
|
+
const cv.gpu.ALPHA_OVER 0
|
2911
|
+
const cv.gpu.ALPHA_IN 1
|
2912
|
+
const cv.gpu.ALPHA_OUT 2
|
2913
|
+
const cv.gpu.ALPHA_ATOP 3
|
2914
|
+
const cv.gpu.ALPHA_XOR 4
|
2915
|
+
const cv.gpu.ALPHA_PLUS 5
|
2916
|
+
const cv.gpu.ALPHA_OVER_PREMUL 6
|
2917
|
+
const cv.gpu.ALPHA_IN_PREMUL 7
|
2918
|
+
const cv.gpu.ALPHA_OUT_PREMUL 8
|
2919
|
+
const cv.gpu.ALPHA_ATOP_PREMUL 9
|
2920
|
+
const cv.gpu.ALPHA_XOR_PREMUL 10
|
2921
|
+
const cv.gpu.ALPHA_PLUS_PREMUL 11
|
2922
|
+
const cv.gpu.ALPHA_PREMUL 12
|
2923
|
+
const cv.gpu.COLOR_BayerBG2BGR_MHT 256
|
2924
|
+
const cv.gpu.COLOR_BayerGB2BGR_MHT 257
|
2925
|
+
const cv.gpu.COLOR_BayerRG2BGR_MHT 258
|
2926
|
+
const cv.gpu.COLOR_BayerGR2BGR_MHT 259
|
2927
|
+
const cv.gpu.COLOR_BayerBG2RGB_MHT COLOR_BayerRG2BGR_MHT
|
2928
|
+
const cv.gpu.COLOR_BayerGB2RGB_MHT COLOR_BayerGR2BGR_MHT
|
2929
|
+
const cv.gpu.COLOR_BayerRG2RGB_MHT COLOR_BayerBG2BGR_MHT
|
2930
|
+
const cv.gpu.COLOR_BayerGR2RGB_MHT COLOR_BayerGB2BGR_MHT
|
2931
|
+
const cv.gpu.COLOR_BayerBG2GRAY_MHT 260
|
2932
|
+
const cv.gpu.COLOR_BayerGB2GRAY_MHT 261
|
2933
|
+
const cv.gpu.COLOR_BayerRG2GRAY_MHT 262
|
2934
|
+
const cv.gpu.COLOR_BayerGR2GRAY_MHT 263
|
2935
|
+
const cv.gpu.StereoBM_GPU.BASIC_PRESET 0
|
2936
|
+
const cv.gpu.StereoBM_GPU.PREFILTER_XSOBEL 1
|
2937
|
+
const cv.gpu.StereoBM_GPU.DEFAULT_NDISP 64
|
2938
|
+
const cv.gpu.StereoBM_GPU.DEFAULT_WINSZ 19
|
2939
|
+
const cv.gpu.StereoBeliefPropagation.DEFAULT_NDISP 64
|
2940
|
+
const cv.gpu.StereoBeliefPropagation.DEFAULT_ITERS 5
|
2941
|
+
const cv.gpu.StereoBeliefPropagation.DEFAULT_LEVELS 5
|
2942
|
+
const cv.gpu.StereoConstantSpaceBP.DEFAULT_NDISP 128
|
2943
|
+
const cv.gpu.StereoConstantSpaceBP.DEFAULT_ITERS 8
|
2944
|
+
const cv.gpu.StereoConstantSpaceBP.DEFAULT_LEVELS 4
|
2945
|
+
const cv.gpu.StereoConstantSpaceBP.DEFAULT_NR_PLANE 4
|
2946
|
+
const cv.gpu.DisparityBilateralFilter.DEFAULT_NDISP 64
|
2947
|
+
const cv.gpu.DisparityBilateralFilter.DEFAULT_RADIUS 3
|
2948
|
+
const cv.gpu.DisparityBilateralFilter.DEFAULT_ITERS 1
|
2949
|
+
const cv.gpu.HOGDescriptor.DEFAULT_WIN_SIGMA -1
|
2950
|
+
const cv.gpu.HOGDescriptor.DEFAULT_NLEVELS 64
|
2951
|
+
const cv.gpu.HOGDescriptor.DESCR_FORMAT_ROW_BY_ROW 0
|
2952
|
+
const cv.gpu.HOGDescriptor.DESCR_FORMAT_COL_BY_COL 1
|
2953
|
+
const cv.gpu.FAST_GPU.LOCATION_ROW 0
|
2954
|
+
const cv.gpu.FAST_GPU.RESPONSE_ROW 0+1
|
2955
|
+
const cv.gpu.FAST_GPU.ROWS_COUNT 0+2
|
2956
|
+
const cv.gpu.ORB_GPU.X_ROW 0
|
2957
|
+
const cv.gpu.ORB_GPU.Y_ROW 0+1
|
2958
|
+
const cv.gpu.ORB_GPU.RESPONSE_ROW 0+2
|
2959
|
+
const cv.gpu.ORB_GPU.ANGLE_ROW 0+3
|
2960
|
+
const cv.gpu.ORB_GPU.OCTAVE_ROW 0+4
|
2961
|
+
const cv.gpu.ORB_GPU.SIZE_ROW 0+5
|
2962
|
+
const cv.gpu.ORB_GPU.ROWS_COUNT 0+6
|
2963
|
+
const cv.gpu.ORB_GPU.DEFAULT_FAST_THRESHOLD 20
|
2964
|
+
const cv.gpu.VideoWriter_GPU.SF_UYVY 0
|
2965
|
+
const cv.gpu.VideoWriter_GPU.SF_YUY2 0+1
|
2966
|
+
const cv.gpu.VideoWriter_GPU.SF_YV12 0+2
|
2967
|
+
const cv.gpu.VideoWriter_GPU.SF_NV12 0+3
|
2968
|
+
const cv.gpu.VideoWriter_GPU.SF_IYUV 0+4
|
2969
|
+
const cv.gpu.VideoWriter_GPU.SF_BGR 0+5
|
2970
|
+
const cv.gpu.VideoWriter_GPU.SF_GRAY SF_BGR
|
2971
|
+
const cv.gpu.VideoWriter_GPU.EncoderCallBack.IFRAME 1
|
2972
|
+
const cv.gpu.VideoWriter_GPU.EncoderCallBack.PFRAME 2
|
2973
|
+
const cv.gpu.VideoWriter_GPU.EncoderCallBack.BFRAME 3
|
2974
|
+
const cv.gpu.VideoReader_GPU.MPEG1 0
|
2975
|
+
const cv.gpu.VideoReader_GPU.MPEG2 0+1
|
2976
|
+
const cv.gpu.VideoReader_GPU.MPEG4 0+2
|
2977
|
+
const cv.gpu.VideoReader_GPU.VC1 0+3
|
2978
|
+
const cv.gpu.VideoReader_GPU.H264 0+4
|
2979
|
+
const cv.gpu.VideoReader_GPU.JPEG 0+5
|
2980
|
+
const cv.gpu.VideoReader_GPU.H264_SVC 0+6
|
2981
|
+
const cv.gpu.VideoReader_GPU.H264_MVC 0+7
|
2982
|
+
const cv.gpu.VideoReader_GPU.Uncompressed_YUV420 (('I'<<24)|('Y'<<16)|('U'<<8)|('V'))
|
2983
|
+
const cv.gpu.VideoReader_GPU.Uncompressed_YV12 (('Y'<<24)|('V'<<16)|('1'<<8)|('2'))
|
2984
|
+
const cv.gpu.VideoReader_GPU.Uncompressed_NV12 (('N'<<24)|('V'<<16)|('1'<<8)|('2'))
|
2985
|
+
const cv.gpu.VideoReader_GPU.Uncompressed_YUYV (('Y'<<24)|('U'<<16)|('Y'<<8)|('V'))
|
2986
|
+
const cv.gpu.VideoReader_GPU.Uncompressed_UYVY (('U'<<24)|('Y'<<16)|('V'<<8)|('Y'))
|
2987
|
+
const cv.gpu.VideoReader_GPU. (('U'<<24)|('Y'<<16)|('V'<<8)|('Y'))+1
|
2988
|
+
const cv.gpu.VideoReader_GPU.Monochrome 0
|
2989
|
+
const cv.gpu.VideoReader_GPU.YUV420 0+1
|
2990
|
+
const cv.gpu.VideoReader_GPU.YUV422 0+2
|
2991
|
+
const cv.gpu.VideoReader_GPU.YUV444 0+3
|
2992
|
+
const cv.gpu.VideoReader_GPU. 0+4
|
2993
|
+
const CV_CONTOUR_TREES_MATCH_I1 1
|
2994
|
+
const CV_FACE_MOUTH 0
|
2995
|
+
const CV_FACE_LEFT_EYE 1
|
2996
|
+
const CV_FACE_RIGHT_EYE 2
|
2997
|
+
struct CvEMParams /Map
|
2998
|
+
int nclusters /RW
|
2999
|
+
int cov_mat_type /RW
|
3000
|
+
int start_step /RW
|
3001
|
+
CvTermCriteria term_crit /RW
|
3002
|
+
class CvEM : CvStatModel
|
3003
|
+
const CvEM.COV_MAT_SPHERICAL cv::EM::COV_MAT_SPHERICAL
|
3004
|
+
const CvEM.COV_MAT_DIAGONAL cv::EM::COV_MAT_DIAGONAL
|
3005
|
+
const CvEM.COV_MAT_GENERIC cv::EM::COV_MAT_GENERIC
|
3006
|
+
const CvEM.START_E_STEP cv::EM::START_E_STEP
|
3007
|
+
const CvEM.START_M_STEP cv::EM::START_M_STEP
|
3008
|
+
const CvEM.START_AUTO_STEP cv::EM::START_AUTO_STEP
|
3009
|
+
CvEM.CvEM
|
3010
|
+
CvEM.CvEM
|
3011
|
+
Mat samples
|
3012
|
+
Mat sampleIdx cv::Mat()
|
3013
|
+
CvEMParams params CvEMParams()
|
3014
|
+
CvEM.train bool
|
3015
|
+
Mat samples
|
3016
|
+
Mat sampleIdx cv::Mat()
|
3017
|
+
CvEMParams params CvEMParams()
|
3018
|
+
Mat* labels 0 /O
|
3019
|
+
CvEM.predict float
|
3020
|
+
Mat sample
|
3021
|
+
Mat* probs 0 /O
|
3022
|
+
CvEM.calcLikelihood double
|
3023
|
+
Mat sample
|
3024
|
+
CvEM.getNClusters int
|
3025
|
+
CvEM.getMeans Mat
|
3026
|
+
CvEM.getCovs void
|
3027
|
+
vector_Mat covs /O
|
3028
|
+
CvEM.getWeights Mat
|
3029
|
+
CvEM.getProbs Mat
|
3030
|
+
CvEM.getLikelihood double
|
3031
|
+
CvEM.clear void
|
3032
|
+
const cv.FernClassifier.PATCH_SIZE 31
|
3033
|
+
const cv.FernClassifier.DEFAULT_STRUCTS 50
|
3034
|
+
const cv.FernClassifier.DEFAULT_STRUCT_SIZE 9
|
3035
|
+
const cv.FernClassifier.DEFAULT_VIEWS 5000
|
3036
|
+
const cv.FernClassifier.DEFAULT_SIGNATURE_SIZE 176
|
3037
|
+
const cv.FernClassifier.COMPRESSION_NONE 0
|
3038
|
+
const cv.FernClassifier.COMPRESSION_RANDOM_PROJ 1
|
3039
|
+
const cv.FernClassifier.COMPRESSION_PCA 2
|
3040
|
+
const cv.FernClassifier.DEFAULT_COMPRESSION_METHOD COMPRESSION_NONE
|
3041
|
+
cv.groupRectangles void
|
3042
|
+
vector_Rect rectList /IO
|
3043
|
+
vector_int weights /O
|
3044
|
+
int groupThreshold
|
3045
|
+
double eps 0.2
|
3046
|
+
const cv.FeatureEvaluator.HAAR 0
|
3047
|
+
const cv.FeatureEvaluator.LBP 1
|
3048
|
+
const cv.FeatureEvaluator.HOG 2
|
3049
|
+
const cv.CASCADE_DO_CANNY_PRUNING 1
|
3050
|
+
const cv.CASCADE_SCALE_IMAGE 2
|
3051
|
+
const cv.CASCADE_FIND_BIGGEST_OBJECT 4
|
3052
|
+
const cv.CASCADE_DO_ROUGH_SEARCH 8
|
3053
|
+
class cv.CascadeClassifier
|
3054
|
+
cv.CascadeClassifier.CascadeClassifier
|
3055
|
+
cv.CascadeClassifier.CascadeClassifier
|
3056
|
+
String filename
|
3057
|
+
cv.CascadeClassifier.empty bool
|
3058
|
+
cv.CascadeClassifier.load bool
|
3059
|
+
String filename
|
3060
|
+
cv.CascadeClassifier.detectMultiScale void
|
3061
|
+
Mat image
|
3062
|
+
vector_Rect objects /O
|
3063
|
+
double scaleFactor 1.1
|
3064
|
+
int minNeighbors 3
|
3065
|
+
int flags 0
|
3066
|
+
Size minSize Size()
|
3067
|
+
Size maxSize Size()
|
3068
|
+
cv.CascadeClassifier.detectMultiScale void
|
3069
|
+
Mat image
|
3070
|
+
vector_Rect objects /O
|
3071
|
+
vector_int rejectLevels /O
|
3072
|
+
vector_double levelWeights /O
|
3073
|
+
double scaleFactor 1.1
|
3074
|
+
int minNeighbors 3
|
3075
|
+
int flags 0
|
3076
|
+
Size minSize Size()
|
3077
|
+
Size maxSize Size()
|
3078
|
+
bool outputRejectLevels false
|
3079
|
+
struct cv.HOGDescriptor
|
3080
|
+
Size winSize
|
3081
|
+
Size blockSize
|
3082
|
+
Size blockStride
|
3083
|
+
Size cellSize
|
3084
|
+
int nbins
|
3085
|
+
int derivAperture
|
3086
|
+
double winSigma
|
3087
|
+
int histogramNormType
|
3088
|
+
double L2HysThreshold
|
3089
|
+
bool gammaCorrection
|
3090
|
+
vector_float svmDetector
|
3091
|
+
int nlevels
|
3092
|
+
const cv.HOGDescriptor.L2Hys 0
|
3093
|
+
const cv.HOGDescriptor.DEFAULT_NLEVELS 64
|
3094
|
+
cv.HOGDescriptor.HOGDescriptor
|
3095
|
+
cv.HOGDescriptor.HOGDescriptor
|
3096
|
+
Size _winSize
|
3097
|
+
Size _blockSize
|
3098
|
+
Size _blockStride
|
3099
|
+
Size _cellSize
|
3100
|
+
int _nbins
|
3101
|
+
int _derivAperture 1
|
3102
|
+
double _winSigma -1
|
3103
|
+
int _histogramNormType HOGDescriptor::L2Hys
|
3104
|
+
double _L2HysThreshold 0.2
|
3105
|
+
bool _gammaCorrection false
|
3106
|
+
int _nlevels HOGDescriptor::DEFAULT_NLEVELS
|
3107
|
+
cv.HOGDescriptor.HOGDescriptor
|
3108
|
+
String filename
|
3109
|
+
cv.HOGDescriptor.getDescriptorSize size_t
|
3110
|
+
cv.HOGDescriptor.checkDetectorSize bool
|
3111
|
+
cv.HOGDescriptor.getWinSigma double
|
3112
|
+
cv.HOGDescriptor.setSVMDetector void
|
3113
|
+
Mat _svmdetector
|
3114
|
+
cv.HOGDescriptor.load bool
|
3115
|
+
String filename
|
3116
|
+
String objname String()
|
3117
|
+
cv.HOGDescriptor.save void
|
3118
|
+
String filename
|
3119
|
+
String objname String()
|
3120
|
+
cv.HOGDescriptor.compute void
|
3121
|
+
Mat img
|
3122
|
+
vector_float descriptors /O
|
3123
|
+
Size winStride Size()
|
3124
|
+
Size padding Size()
|
3125
|
+
vector_Point locations std::vector<Point>()
|
3126
|
+
cv.HOGDescriptor.detect void
|
3127
|
+
Mat img
|
3128
|
+
vector_Point foundLocations /O
|
3129
|
+
vector_double weights /O
|
3130
|
+
double hitThreshold 0
|
3131
|
+
Size winStride Size()
|
3132
|
+
Size padding Size()
|
3133
|
+
vector_Point searchLocations std::vector<Point>()
|
3134
|
+
cv.HOGDescriptor.detectMultiScale void
|
3135
|
+
Mat img
|
3136
|
+
vector_Rect foundLocations /O
|
3137
|
+
vector_double foundWeights /O
|
3138
|
+
double hitThreshold 0
|
3139
|
+
Size winStride Size()
|
3140
|
+
Size padding Size()
|
3141
|
+
double scale 1.05
|
3142
|
+
double finalThreshold 2.0
|
3143
|
+
bool useMeanshiftGrouping false
|
3144
|
+
cv.HOGDescriptor.computeGradient void
|
3145
|
+
Mat img
|
3146
|
+
Mat grad /O
|
3147
|
+
Mat angleOfs /O
|
3148
|
+
Size paddingTL Size()
|
3149
|
+
Size paddingBR Size()
|
3150
|
+
cv.HOGDescriptor.getDefaultPeopleDetector vector_float /S
|
3151
|
+
cv.HOGDescriptor.getDaimlerPeopleDetector vector_float /S
|
3152
|
+
cv.findDataMatrix void
|
3153
|
+
Mat image
|
3154
|
+
vector_String codes /O
|
3155
|
+
Mat corners Mat() /O
|
3156
|
+
vector_Mat dmtx vector_Mat() /O
|
3157
|
+
cv.drawDataMatrixCodes void
|
3158
|
+
Mat image /IO
|
3159
|
+
vector_String codes
|
3160
|
+
Mat corners
|
3161
|
+
const cv.detail.Blender.NO 0
|
3162
|
+
const cv.detail.Blender.FEATHER 1
|
3163
|
+
const cv.detail.Blender.MULTI_BAND 2
|
3164
|
+
const cv.detail.DpSeamFinder.COLOR 0
|
3165
|
+
const cv.detail.DpSeamFinder.COLOR_GRAD 1
|
3166
|
+
const cv.detail.GraphCutSeamFinderBase.COST_COLOR 0
|
3167
|
+
const cv.detail.GraphCutSeamFinderBase.COST_COLOR_GRAD 1
|
3168
|
+
const cv.detail.WAVE_CORRECT_HORIZ 0
|
3169
|
+
const cv.detail.WAVE_CORRECT_VERT 1
|
3170
|
+
const cv.detail.ExposureCompensator.NO 0
|
3171
|
+
const cv.detail.ExposureCompensator.GAIN 1
|
3172
|
+
const cv.detail.ExposureCompensator.GAIN_BLOCKS 2
|
3173
|
+
const cv.Stitcher.ORIG_RESOL -1
|
3174
|
+
const cv.Stitcher.OK 0
|
3175
|
+
const cv.Stitcher.ERR_NEED_MORE_IMGS 1
|
3176
|
+
const cv.RETINA_COLOR_RANDOM 0
|
3177
|
+
const cv.RETINA_COLOR_DIAGONAL 1
|
3178
|
+
const cv.RETINA_COLOR_BAYER 2
|
3179
|
+
const cv.CvMotionModel.LOW_PASS_FILTER 0
|
3180
|
+
const cv.CvMotionModel.KALMAN_FILTER 1
|
3181
|
+
const cv.CvMotionModel.EM 2
|
3182
|
+
const cv.CvMeanShiftTrackerParams.H 0
|
3183
|
+
const cv.CvMeanShiftTrackerParams.HS 1
|
3184
|
+
const cv.CvMeanShiftTrackerParams.HSV 2
|
3185
|
+
const cv.CvFeatureTrackerParams.SIFT 0
|
3186
|
+
const cv.CvFeatureTrackerParams.SURF 1
|
3187
|
+
const cv.CvFeatureTrackerParams.OPTICAL_FLOW 2
|
3188
|
+
const cv.of2.FabMap.MEAN_FIELD 1
|
3189
|
+
const cv.of2.FabMap.SAMPLED 2
|
3190
|
+
const cv.of2.FabMap.NAIVE_BAYES 4
|
3191
|
+
const cv.of2.FabMap.CHOW_LIU 8
|
3192
|
+
const cv.of2.FabMap.MOTION_MODEL 16
|
3193
|
+
const cv.DetectionBasedTracker.DETECTED_NOT_SHOWN_YET 0
|
3194
|
+
const cv.DetectionBasedTracker.DETECTED 1
|
3195
|
+
const cv.DetectionBasedTracker.DETECTED_TEMPORARY_LOST 2
|
3196
|
+
const cv.DetectionBasedTracker.WRONG_OBJECT 3
|
3197
|
+
const CvAdaptiveSkinDetector.MORPHING_METHOD_NONE 0
|
3198
|
+
const CvAdaptiveSkinDetector.MORPHING_METHOD_ERODE 1
|
3199
|
+
const CvAdaptiveSkinDetector.MORPHING_METHOD_ERODE_ERODE 2
|
3200
|
+
const CvAdaptiveSkinDetector.MORPHING_METHOD_ERODE_DILATE 3
|
3201
|
+
const CvFuzzyMeanShiftTracker.tsNone 0
|
3202
|
+
const CvFuzzyMeanShiftTracker.tsSearching 1
|
3203
|
+
const CvFuzzyMeanShiftTracker.tsTracking 2
|
3204
|
+
const CvFuzzyMeanShiftTracker.tsSetWindow 3
|
3205
|
+
const CvFuzzyMeanShiftTracker.tsDisabled 10
|
3206
|
+
const CvFuzzyMeanShiftTracker.rmEdgeDensityLinear 0
|
3207
|
+
const CvFuzzyMeanShiftTracker.rmEdgeDensityFuzzy 1
|
3208
|
+
const CvFuzzyMeanShiftTracker.rmInnerDensity 2
|
3209
|
+
const CvFuzzyMeanShiftTracker.MinKernelMass 1000
|
3210
|
+
const cv.Stitcher.ORIG_RESOL -1
|
3211
|
+
const cv.Stitcher.OK 0
|
3212
|
+
const cv.Stitcher.ERR_NEED_MORE_IMGS 1
|
3213
|
+
const cv.INPAINT_NS 0
|
3214
|
+
const cv.INPAINT_TELEA 1
|
3215
|
+
cv.inpaint void
|
3216
|
+
Mat src
|
3217
|
+
Mat inpaintMask
|
3218
|
+
Mat dst /O
|
3219
|
+
double inpaintRadius
|
3220
|
+
int flags
|
3221
|
+
cv.fastNlMeansDenoising void
|
3222
|
+
Mat src
|
3223
|
+
Mat dst /O
|
3224
|
+
float h 3
|
3225
|
+
int templateWindowSize 7
|
3226
|
+
int searchWindowSize 21
|
3227
|
+
cv.fastNlMeansDenoisingColored void
|
3228
|
+
Mat src
|
3229
|
+
Mat dst /O
|
3230
|
+
float h 3
|
3231
|
+
float hColor 3
|
3232
|
+
int templateWindowSize 7
|
3233
|
+
int searchWindowSize 21
|
3234
|
+
cv.fastNlMeansDenoisingMulti void
|
3235
|
+
vector_Mat srcImgs
|
3236
|
+
Mat dst /O
|
3237
|
+
int imgToDenoiseIndex
|
3238
|
+
int temporalWindowSize
|
3239
|
+
float h 3
|
3240
|
+
int templateWindowSize 7
|
3241
|
+
int searchWindowSize 21
|
3242
|
+
cv.fastNlMeansDenoisingColoredMulti void
|
3243
|
+
vector_Mat srcImgs
|
3244
|
+
Mat dst /O
|
3245
|
+
int imgToDenoiseIndex
|
3246
|
+
int temporalWindowSize
|
3247
|
+
float h 3
|
3248
|
+
float hColor 3
|
3249
|
+
int templateWindowSize 7
|
3250
|
+
int searchWindowSize 21
|
3251
|
+
class cv.FeatureDetector : cv::Algorithm
|
3252
|
+
cv.FeatureDetector.detect void
|
3253
|
+
Mat image
|
3254
|
+
vector_KeyPoint keypoints /O
|
3255
|
+
Mat mask Mat()
|
3256
|
+
cv.FeatureDetector.empty bool
|
3257
|
+
cv.FeatureDetector.create Ptr_FeatureDetector /S
|
3258
|
+
String detectorType
|
3259
|
+
class cv.DescriptorExtractor : cv::Algorithm
|
3260
|
+
cv.DescriptorExtractor.compute void
|
3261
|
+
Mat image
|
3262
|
+
vector_KeyPoint keypoints /O; /IO
|
3263
|
+
Mat descriptors /O
|
3264
|
+
cv.DescriptorExtractor.empty bool
|
3265
|
+
cv.DescriptorExtractor.create Ptr_DescriptorExtractor /S
|
3266
|
+
String descriptorExtractorType
|
3267
|
+
class cv.Feature2D : cv::FeatureDetector, cv::DescriptorExtractor
|
3268
|
+
cv.Feature2D.operator () void =detectAndCompute
|
3269
|
+
Mat image
|
3270
|
+
Mat mask
|
3271
|
+
vector_KeyPoint keypoints /O
|
3272
|
+
Mat descriptors /O
|
3273
|
+
bool useProvidedKeypoints false
|
3274
|
+
cv.Feature2D.create Ptr_Feature2D /S
|
3275
|
+
String name
|
3276
|
+
class cv.BRISK : cv::Feature2D
|
3277
|
+
cv.BRISK.BRISK explicit
|
3278
|
+
int thresh 30
|
3279
|
+
int octaves 3
|
3280
|
+
float patternScale 1.0f
|
3281
|
+
cv.BRISK.BRISK explicit
|
3282
|
+
vector_float radiusList
|
3283
|
+
vector_int numberList
|
3284
|
+
float dMax 5.85f
|
3285
|
+
float dMin 8.2f
|
3286
|
+
vector_int indexChange std::vector<int>()
|
3287
|
+
cv.BRISK.generateKernel void
|
3288
|
+
vector_float radiusList
|
3289
|
+
vector_int numberList
|
3290
|
+
float dMax 5.85f
|
3291
|
+
float dMin 8.2f
|
3292
|
+
vector_int indexChange std::vector<int>()
|
3293
|
+
class cv.ORB : cv::Feature2D
|
3294
|
+
const cv.ORB.kBytes 32
|
3295
|
+
const cv.ORB.HARRIS_SCORE 0
|
3296
|
+
const cv.ORB.FAST_SCORE 1
|
3297
|
+
cv.ORB.ORB explicit
|
3298
|
+
int nfeatures 500
|
3299
|
+
float scaleFactor 1.2f
|
3300
|
+
int nlevels 8
|
3301
|
+
int edgeThreshold 31
|
3302
|
+
int firstLevel 0
|
3303
|
+
int WTA_K 2
|
3304
|
+
int scoreType ORB::HARRIS_SCORE
|
3305
|
+
int patchSize 31
|
3306
|
+
const cv.FREAK.NB_SCALES 64
|
3307
|
+
const cv.FREAK.NB_PAIRS 512
|
3308
|
+
const cv.FREAK.NB_ORIENPAIRS 45
|
3309
|
+
class cv.MSER : cv::FeatureDetector
|
3310
|
+
cv.MSER.MSER explicit
|
3311
|
+
int _delta 5
|
3312
|
+
int _min_area 60
|
3313
|
+
int _max_area 14400
|
3314
|
+
double _max_variation 0.25
|
3315
|
+
double _min_diversity .2
|
3316
|
+
int _max_evolution 200
|
3317
|
+
double _area_threshold 1.01
|
3318
|
+
double _min_margin 0.003
|
3319
|
+
int _edge_blur_size 5
|
3320
|
+
cv.MSER.operator () void =detect
|
3321
|
+
Mat image
|
3322
|
+
vector_vector_Point msers /O
|
3323
|
+
Mat mask Mat()
|
3324
|
+
class cv.StarDetector : cv::FeatureDetector
|
3325
|
+
cv.StarDetector.StarDetector
|
3326
|
+
int _maxSize 45
|
3327
|
+
int _responseThreshold 30
|
3328
|
+
int _lineThresholdProjected 10
|
3329
|
+
int _lineThresholdBinarized 8
|
3330
|
+
int _suppressNonmaxSize 5
|
3331
|
+
cv.StarDetector.operator () void =detect
|
3332
|
+
Mat image
|
3333
|
+
vector_KeyPoint keypoints /O
|
3334
|
+
class cv.FastFeatureDetector : cv::FeatureDetector
|
3335
|
+
const cv.FastFeatureDetector.TYPE_5_8 0
|
3336
|
+
const cv.FastFeatureDetector.TYPE_7_12 1
|
3337
|
+
const cv.FastFeatureDetector.TYPE_9_16 2
|
3338
|
+
cv.FastFeatureDetector.FastFeatureDetector
|
3339
|
+
int threshold 10
|
3340
|
+
bool nonmaxSuppression true
|
3341
|
+
cv.FastFeatureDetector.FastFeatureDetector
|
3342
|
+
int threshold
|
3343
|
+
bool nonmaxSuppression
|
3344
|
+
int type
|
3345
|
+
class cv.SimpleBlobDetector : cv::FeatureDetector
|
3346
|
+
struct cv.SimpleBlobDetector.Params /Simple
|
3347
|
+
float thresholdStep /RW
|
3348
|
+
float minThreshold /RW
|
3349
|
+
float maxThreshold /RW
|
3350
|
+
size_t minRepeatability /RW
|
3351
|
+
float minDistBetweenBlobs /RW
|
3352
|
+
bool filterByColor /RW
|
3353
|
+
uchar blobColor /RW
|
3354
|
+
bool filterByArea /RW
|
3355
|
+
float minArea /RW
|
3356
|
+
float maxArea /RW
|
3357
|
+
bool filterByCircularity /RW
|
3358
|
+
float minCircularity /RW
|
3359
|
+
float maxCircularity /RW
|
3360
|
+
bool filterByInertia /RW
|
3361
|
+
float minInertiaRatio /RW
|
3362
|
+
float maxInertiaRatio /RW
|
3363
|
+
bool filterByConvexity /RW
|
3364
|
+
float minConvexity /RW
|
3365
|
+
float maxConvexity /RW
|
3366
|
+
cv.SimpleBlobDetector.Params.Params
|
3367
|
+
cv.SimpleBlobDetector.SimpleBlobDetector
|
3368
|
+
SimpleBlobDetector_Params parameters SimpleBlobDetector::Params()
|
3369
|
+
class cv.GridAdaptedFeatureDetector : cv::FeatureDetector
|
3370
|
+
cv.GridAdaptedFeatureDetector.GridAdaptedFeatureDetector
|
3371
|
+
Ptr_FeatureDetector detector 0
|
3372
|
+
int maxTotalKeypoints 1000
|
3373
|
+
int gridRows 4
|
3374
|
+
int gridCols 4
|
3375
|
+
class cv.PyramidAdaptedFeatureDetector : cv::FeatureDetector
|
3376
|
+
cv.PyramidAdaptedFeatureDetector.PyramidAdaptedFeatureDetector
|
3377
|
+
Ptr_FeatureDetector detector
|
3378
|
+
int maxLevel 2
|
3379
|
+
const cv.Hamming.normType NORM_HAMMING
|
3380
|
+
class cv.DescriptorMatcher : cv::Algorithm
|
3381
|
+
cv.DescriptorMatcher.add void
|
3382
|
+
vector_Mat descriptors
|
3383
|
+
cv.DescriptorMatcher.getTrainDescriptors vector_Mat
|
3384
|
+
cv.DescriptorMatcher.clear void
|
3385
|
+
cv.DescriptorMatcher.empty bool
|
3386
|
+
cv.DescriptorMatcher.train void
|
3387
|
+
cv.DescriptorMatcher.match void
|
3388
|
+
Mat queryDescriptors
|
3389
|
+
Mat trainDescriptors
|
3390
|
+
vector_DMatch matches /O
|
3391
|
+
Mat mask Mat()
|
3392
|
+
cv.DescriptorMatcher.knnMatch void
|
3393
|
+
Mat queryDescriptors
|
3394
|
+
Mat trainDescriptors
|
3395
|
+
vector_vector_DMatch matches /O
|
3396
|
+
int k
|
3397
|
+
Mat mask Mat()
|
3398
|
+
bool compactResult false
|
3399
|
+
cv.DescriptorMatcher.match void
|
3400
|
+
Mat queryDescriptors
|
3401
|
+
vector_DMatch matches /O
|
3402
|
+
vector_Mat masks std::vector<Mat>()
|
3403
|
+
cv.DescriptorMatcher.knnMatch void
|
3404
|
+
Mat queryDescriptors
|
3405
|
+
vector_vector_DMatch matches /O
|
3406
|
+
int k
|
3407
|
+
vector_Mat masks std::vector<Mat>()
|
3408
|
+
bool compactResult false
|
3409
|
+
cv.DescriptorMatcher.create Ptr_DescriptorMatcher /S
|
3410
|
+
String descriptorMatcherType
|
3411
|
+
class cv.BFMatcher : cv::DescriptorMatcher
|
3412
|
+
cv.BFMatcher.BFMatcher
|
3413
|
+
int normType NORM_L2
|
3414
|
+
bool crossCheck false
|
3415
|
+
class cv.FlannBasedMatcher : cv::DescriptorMatcher
|
3416
|
+
cv.FlannBasedMatcher.FlannBasedMatcher
|
3417
|
+
Ptr_flann_IndexParams indexParams new flann::KDTreeIndexParams()
|
3418
|
+
Ptr_flann_SearchParams searchParams new flann::SearchParams()
|
3419
|
+
const cv.DrawMatchesFlags.DEFAULT 0
|
3420
|
+
const cv.DrawMatchesFlags.DRAW_OVER_OUTIMG 1
|
3421
|
+
const cv.DrawMatchesFlags.NOT_DRAW_SINGLE_POINTS 2
|
3422
|
+
const cv.DrawMatchesFlags.DRAW_RICH_KEYPOINTS 4
|
3423
|
+
cv.drawKeypoints void
|
3424
|
+
Mat image
|
3425
|
+
vector_KeyPoint keypoints
|
3426
|
+
Mat outImage /O
|
3427
|
+
Scalar color Scalar::all(-1)
|
3428
|
+
int flags DrawMatchesFlags::DEFAULT
|
3429
|
+
const cv.LMEDS 4
|
3430
|
+
const cv.RANSAC 8
|
3431
|
+
const cv.ITERATIVE 0
|
3432
|
+
const cv.EPNP 1
|
3433
|
+
const cv.P3P 2
|
3434
|
+
const cv.CALIB_CB_ADAPTIVE_THRESH 1
|
3435
|
+
const cv.CALIB_CB_NORMALIZE_IMAGE 2
|
3436
|
+
const cv.CALIB_CB_FILTER_QUADS 4
|
3437
|
+
const cv.CALIB_CB_FAST_CHECK 8
|
3438
|
+
const cv.CALIB_CB_SYMMETRIC_GRID 1
|
3439
|
+
const cv.CALIB_CB_ASYMMETRIC_GRID 2
|
3440
|
+
const cv.CALIB_CB_CLUSTERING 4
|
3441
|
+
const cv.CALIB_USE_INTRINSIC_GUESS 0x00001
|
3442
|
+
const cv.CALIB_FIX_ASPECT_RATIO 0x00002
|
3443
|
+
const cv.CALIB_FIX_PRINCIPAL_POINT 0x00004
|
3444
|
+
const cv.CALIB_ZERO_TANGENT_DIST 0x00008
|
3445
|
+
const cv.CALIB_FIX_FOCAL_LENGTH 0x00010
|
3446
|
+
const cv.CALIB_FIX_K1 0x00020
|
3447
|
+
const cv.CALIB_FIX_K2 0x00040
|
3448
|
+
const cv.CALIB_FIX_K3 0x00080
|
3449
|
+
const cv.CALIB_FIX_K4 0x00800
|
3450
|
+
const cv.CALIB_FIX_K5 0x01000
|
3451
|
+
const cv.CALIB_FIX_K6 0x02000
|
3452
|
+
const cv.CALIB_RATIONAL_MODEL 0x04000
|
3453
|
+
const cv.CALIB_THIN_PRISM_MODEL 0x08000
|
3454
|
+
const cv.CALIB_FIX_S1_S2_S3_S4 0x10000
|
3455
|
+
const cv.CALIB_FIX_INTRINSIC 0x00100
|
3456
|
+
const cv.CALIB_SAME_FOCAL_LENGTH 0x00200
|
3457
|
+
const cv.CALIB_ZERO_DISPARITY 0x00400
|
3458
|
+
const cv.FM_7POINT 1
|
3459
|
+
const cv.FM_8POINT 2
|
3460
|
+
const cv.FM_LMEDS 4
|
3461
|
+
const cv.FM_RANSAC 8
|
3462
|
+
const cv.AFM_4POINT 16
|
3463
|
+
const cv.AFM_LMEDS 32
|
3464
|
+
const cv.AFM_RANSAC 64
|
3465
|
+
cv.Rodrigues void
|
3466
|
+
Mat src
|
3467
|
+
Mat dst /O
|
3468
|
+
Mat jacobian Mat() /O
|
3469
|
+
cv.findHomography Mat
|
3470
|
+
Mat srcPoints
|
3471
|
+
Mat dstPoints
|
3472
|
+
int method 0
|
3473
|
+
double ransacReprojThreshold 3
|
3474
|
+
Mat mask Mat() /O
|
3475
|
+
cv.RQDecomp3x3 Vec3d
|
3476
|
+
Mat src
|
3477
|
+
Mat mtxR /O
|
3478
|
+
Mat mtxQ /O
|
3479
|
+
Mat Qx Mat() /O
|
3480
|
+
Mat Qy Mat() /O
|
3481
|
+
Mat Qz Mat() /O
|
3482
|
+
cv.decomposeProjectionMatrix void
|
3483
|
+
Mat projMatrix
|
3484
|
+
Mat cameraMatrix /O
|
3485
|
+
Mat rotMatrix /O
|
3486
|
+
Mat transVect /O
|
3487
|
+
Mat rotMatrixX Mat() /O
|
3488
|
+
Mat rotMatrixY Mat() /O
|
3489
|
+
Mat rotMatrixZ Mat() /O
|
3490
|
+
Mat eulerAngles Mat() /O
|
3491
|
+
cv.matMulDeriv void
|
3492
|
+
Mat A
|
3493
|
+
Mat B
|
3494
|
+
Mat dABdA /O
|
3495
|
+
Mat dABdB /O
|
3496
|
+
cv.composeRT void
|
3497
|
+
Mat rvec1
|
3498
|
+
Mat tvec1
|
3499
|
+
Mat rvec2
|
3500
|
+
Mat tvec2
|
3501
|
+
Mat rvec3 /O
|
3502
|
+
Mat tvec3 /O
|
3503
|
+
Mat dr3dr1 Mat() /O
|
3504
|
+
Mat dr3dt1 Mat() /O
|
3505
|
+
Mat dr3dr2 Mat() /O
|
3506
|
+
Mat dr3dt2 Mat() /O
|
3507
|
+
Mat dt3dr1 Mat() /O
|
3508
|
+
Mat dt3dt1 Mat() /O
|
3509
|
+
Mat dt3dr2 Mat() /O
|
3510
|
+
Mat dt3dt2 Mat() /O
|
3511
|
+
cv.projectPoints void
|
3512
|
+
Mat objectPoints
|
3513
|
+
Mat rvec
|
3514
|
+
Mat tvec
|
3515
|
+
Mat cameraMatrix
|
3516
|
+
Mat distCoeffs
|
3517
|
+
Mat imagePoints /O
|
3518
|
+
Mat jacobian Mat() /O
|
3519
|
+
double aspectRatio 0
|
3520
|
+
cv.solvePnP bool
|
3521
|
+
Mat objectPoints
|
3522
|
+
Mat imagePoints
|
3523
|
+
Mat cameraMatrix
|
3524
|
+
Mat distCoeffs
|
3525
|
+
Mat rvec /O
|
3526
|
+
Mat tvec /O
|
3527
|
+
bool useExtrinsicGuess false
|
3528
|
+
int flags ITERATIVE
|
3529
|
+
cv.solvePnPRansac void
|
3530
|
+
Mat objectPoints
|
3531
|
+
Mat imagePoints
|
3532
|
+
Mat cameraMatrix
|
3533
|
+
Mat distCoeffs
|
3534
|
+
Mat rvec /O
|
3535
|
+
Mat tvec /O
|
3536
|
+
bool useExtrinsicGuess false
|
3537
|
+
int iterationsCount 100
|
3538
|
+
float reprojectionError 8.0
|
3539
|
+
int minInliersCount 100
|
3540
|
+
Mat inliers Mat() /O
|
3541
|
+
int flags ITERATIVE
|
3542
|
+
cv.initCameraMatrix2D Mat
|
3543
|
+
vector_Mat objectPoints
|
3544
|
+
vector_Mat imagePoints
|
3545
|
+
Size imageSize
|
3546
|
+
double aspectRatio 1.0
|
3547
|
+
cv.findChessboardCorners bool
|
3548
|
+
Mat image
|
3549
|
+
Size patternSize
|
3550
|
+
Mat corners /O
|
3551
|
+
int flags CALIB_CB_ADAPTIVE_THRESH + CALIB_CB_NORMALIZE_IMAGE
|
3552
|
+
cv.drawChessboardCorners void
|
3553
|
+
Mat image /IO
|
3554
|
+
Size patternSize
|
3555
|
+
Mat corners
|
3556
|
+
bool patternWasFound
|
3557
|
+
cv.findCirclesGrid bool
|
3558
|
+
Mat image
|
3559
|
+
Size patternSize
|
3560
|
+
Mat centers /O
|
3561
|
+
int flags CALIB_CB_SYMMETRIC_GRID
|
3562
|
+
Ptr_FeatureDetector blobDetector new SimpleBlobDetector()
|
3563
|
+
cv.calibrateCamera double
|
3564
|
+
vector_Mat objectPoints
|
3565
|
+
vector_Mat imagePoints
|
3566
|
+
Size imageSize
|
3567
|
+
Mat cameraMatrix /IO
|
3568
|
+
Mat distCoeffs /IO
|
3569
|
+
vector_Mat rvecs /O
|
3570
|
+
vector_Mat tvecs /O
|
3571
|
+
int flags 0
|
3572
|
+
TermCriteria criteria TermCriteria( TermCriteria::COUNT + TermCriteria::EPS, 30, DBL_EPSILON)
|
3573
|
+
cv.calibrationMatrixValues void
|
3574
|
+
Mat cameraMatrix
|
3575
|
+
Size imageSize
|
3576
|
+
double apertureWidth
|
3577
|
+
double apertureHeight
|
3578
|
+
double fovx /O
|
3579
|
+
double fovy /O
|
3580
|
+
double focalLength /O
|
3581
|
+
Point2d principalPoint /O
|
3582
|
+
double aspectRatio /O
|
3583
|
+
cv.stereoCalibrate double
|
3584
|
+
vector_Mat objectPoints
|
3585
|
+
vector_Mat imagePoints1
|
3586
|
+
vector_Mat imagePoints2
|
3587
|
+
Mat cameraMatrix1 /IO
|
3588
|
+
Mat distCoeffs1 /IO
|
3589
|
+
Mat cameraMatrix2 /IO
|
3590
|
+
Mat distCoeffs2 /IO
|
3591
|
+
Size imageSize
|
3592
|
+
Mat R /O
|
3593
|
+
Mat T /O
|
3594
|
+
Mat E /O
|
3595
|
+
Mat F /O
|
3596
|
+
TermCriteria criteria TermCriteria(TermCriteria::COUNT+TermCriteria::EPS, 30, 1e-6)
|
3597
|
+
int flags CALIB_FIX_INTRINSIC
|
3598
|
+
cv.stereoRectify void
|
3599
|
+
Mat cameraMatrix1
|
3600
|
+
Mat distCoeffs1
|
3601
|
+
Mat cameraMatrix2
|
3602
|
+
Mat distCoeffs2
|
3603
|
+
Size imageSize
|
3604
|
+
Mat R
|
3605
|
+
Mat T
|
3606
|
+
Mat R1 /O
|
3607
|
+
Mat R2 /O
|
3608
|
+
Mat P1 /O
|
3609
|
+
Mat P2 /O
|
3610
|
+
Mat Q /O
|
3611
|
+
int flags CALIB_ZERO_DISPARITY
|
3612
|
+
double alpha -1
|
3613
|
+
Size newImageSize Size()
|
3614
|
+
Rect* validPixROI1 0 /O
|
3615
|
+
Rect* validPixROI2 0 /O
|
3616
|
+
cv.stereoRectifyUncalibrated bool
|
3617
|
+
Mat points1
|
3618
|
+
Mat points2
|
3619
|
+
Mat F
|
3620
|
+
Size imgSize
|
3621
|
+
Mat H1 /O
|
3622
|
+
Mat H2 /O
|
3623
|
+
double threshold 5
|
3624
|
+
cv.rectify3Collinear float
|
3625
|
+
Mat cameraMatrix1
|
3626
|
+
Mat distCoeffs1
|
3627
|
+
Mat cameraMatrix2
|
3628
|
+
Mat distCoeffs2
|
3629
|
+
Mat cameraMatrix3
|
3630
|
+
Mat distCoeffs3
|
3631
|
+
vector_Mat imgpt1
|
3632
|
+
vector_Mat imgpt3
|
3633
|
+
Size imageSize
|
3634
|
+
Mat R12
|
3635
|
+
Mat T12
|
3636
|
+
Mat R13
|
3637
|
+
Mat T13
|
3638
|
+
Mat R1 /O
|
3639
|
+
Mat R2 /O
|
3640
|
+
Mat R3 /O
|
3641
|
+
Mat P1 /O
|
3642
|
+
Mat P2 /O
|
3643
|
+
Mat P3 /O
|
3644
|
+
Mat Q /O
|
3645
|
+
double alpha
|
3646
|
+
Size newImgSize
|
3647
|
+
Rect* roi1 /O
|
3648
|
+
Rect* roi2 /O
|
3649
|
+
int flags
|
3650
|
+
cv.getOptimalNewCameraMatrix Mat
|
3651
|
+
Mat cameraMatrix
|
3652
|
+
Mat distCoeffs
|
3653
|
+
Size imageSize
|
3654
|
+
double alpha
|
3655
|
+
Size newImgSize Size()
|
3656
|
+
Rect* validPixROI 0 /O
|
3657
|
+
bool centerPrincipalPoint false
|
3658
|
+
cv.convertPointsToHomogeneous void
|
3659
|
+
Mat src
|
3660
|
+
Mat dst /O
|
3661
|
+
cv.convertPointsFromHomogeneous void
|
3662
|
+
Mat src
|
3663
|
+
Mat dst /O
|
3664
|
+
cv.findFundamentalMat Mat
|
3665
|
+
Mat points1
|
3666
|
+
Mat points2
|
3667
|
+
int method FM_RANSAC
|
3668
|
+
double param1 3.
|
3669
|
+
double param2 0.99
|
3670
|
+
Mat mask Mat() /O
|
3671
|
+
cv.triangulatePoints void
|
3672
|
+
Mat projMatr1
|
3673
|
+
Mat projMatr2
|
3674
|
+
Mat projPoints1
|
3675
|
+
Mat projPoints2
|
3676
|
+
Mat points4D /O
|
3677
|
+
cv.correctMatches void
|
3678
|
+
Mat F
|
3679
|
+
Mat points1
|
3680
|
+
Mat points2
|
3681
|
+
Mat newPoints1 /O
|
3682
|
+
Mat newPoints2 /O
|
3683
|
+
cv.filterSpeckles void
|
3684
|
+
Mat img /IO
|
3685
|
+
double newVal
|
3686
|
+
int maxSpeckleSize
|
3687
|
+
double maxDiff
|
3688
|
+
Mat buf Mat() /IO
|
3689
|
+
cv.getValidDisparityROI Rect
|
3690
|
+
Rect roi1
|
3691
|
+
Rect roi2
|
3692
|
+
int minDisparity
|
3693
|
+
int numberOfDisparities
|
3694
|
+
int SADWindowSize
|
3695
|
+
cv.validateDisparity void
|
3696
|
+
Mat disparity /IO
|
3697
|
+
Mat cost
|
3698
|
+
int minDisparity
|
3699
|
+
int numberOfDisparities
|
3700
|
+
int disp12MaxDisp 1
|
3701
|
+
cv.reprojectImageTo3D void
|
3702
|
+
Mat disparity
|
3703
|
+
Mat _3dImage /O
|
3704
|
+
Mat Q
|
3705
|
+
bool handleMissingValues false
|
3706
|
+
int ddepth -1
|
3707
|
+
cv.estimateAffine3D int
|
3708
|
+
Mat src
|
3709
|
+
Mat dst
|
3710
|
+
Mat out /O
|
3711
|
+
Mat inliers /O
|
3712
|
+
double ransacThreshold 3
|
3713
|
+
double confidence 0.99
|
3714
|
+
class cv.StereoMatcher : cv::Algorithm
|
3715
|
+
const cv.StereoMatcher.DISP_SHIFT 4
|
3716
|
+
const cv.StereoMatcher.DISP_SCALE (1 << DISP_SHIFT)
|
3717
|
+
cv.StereoMatcher.compute void
|
3718
|
+
Mat left
|
3719
|
+
Mat right
|
3720
|
+
Mat disparity /O
|
3721
|
+
cv.StereoMatcher.setMinDisparity void
|
3722
|
+
int minDisparity
|
3723
|
+
cv.StereoMatcher.setNumDisparities void
|
3724
|
+
int numDisparities
|
3725
|
+
cv.StereoMatcher.setBlockSize void
|
3726
|
+
int blockSize
|
3727
|
+
cv.StereoMatcher.setSpeckleWindowSize void
|
3728
|
+
int speckleWindowSize
|
3729
|
+
cv.StereoMatcher.setSpeckleRange void
|
3730
|
+
int speckleRange
|
3731
|
+
cv.StereoMatcher.setDisp12MaxDiff void
|
3732
|
+
int disp12MaxDiff
|
3733
|
+
class cv.StereoBM : cv::StereoMatcher
|
3734
|
+
const cv.StereoBM.PREFILTER_NORMALIZED_RESPONSE 0
|
3735
|
+
const cv.StereoBM.PREFILTER_XSOBEL 1
|
3736
|
+
cv.StereoBM.setPreFilterType void
|
3737
|
+
int preFilterType
|
3738
|
+
cv.StereoBM.setPreFilterSize void
|
3739
|
+
int preFilterSize
|
3740
|
+
cv.StereoBM.setPreFilterCap void
|
3741
|
+
int preFilterCap
|
3742
|
+
cv.StereoBM.setTextureThreshold void
|
3743
|
+
int textureThreshold
|
3744
|
+
cv.StereoBM.setUniquenessRatio void
|
3745
|
+
int uniquenessRatio
|
3746
|
+
cv.StereoBM.setSmallerBlockSize void
|
3747
|
+
int blockSize
|
3748
|
+
cv.StereoBM.setROI1 void
|
3749
|
+
Rect roi1
|
3750
|
+
cv.StereoBM.setROI2 void
|
3751
|
+
Rect roi2
|
3752
|
+
cv.createStereoBM Ptr_StereoBM
|
3753
|
+
int numDisparities 0
|
3754
|
+
int blockSize 21
|
3755
|
+
class cv.StereoSGBM : cv::StereoMatcher
|
3756
|
+
const cv.StereoSGBM.MODE_SGBM 0
|
3757
|
+
const cv.StereoSGBM.MODE_HH 1
|
3758
|
+
cv.StereoSGBM.setPreFilterCap void
|
3759
|
+
int preFilterCap
|
3760
|
+
cv.StereoSGBM.setUniquenessRatio void
|
3761
|
+
int uniquenessRatio
|
3762
|
+
cv.StereoSGBM.setP1 void
|
3763
|
+
int P1
|
3764
|
+
cv.StereoSGBM.setP2 void
|
3765
|
+
int P2
|
3766
|
+
cv.StereoSGBM.setMode void
|
3767
|
+
int mode
|
3768
|
+
cv.createStereoSGBM Ptr_StereoSGBM
|
3769
|
+
int minDisparity
|
3770
|
+
int numDisparities
|
3771
|
+
int blockSize
|
3772
|
+
int P1 0
|
3773
|
+
int P2 0
|
3774
|
+
int disp12MaxDiff 0
|
3775
|
+
int preFilterCap 0
|
3776
|
+
int uniquenessRatio 0
|
3777
|
+
int speckleWindowSize 0
|
3778
|
+
int speckleRange 0
|
3779
|
+
int mode StereoSGBM::MODE_SGBM
|
3780
|
+
const cv.softcascade.Detection.PEDESTRIAN 1
|
3781
|
+
class cv.softcascade.ChannelFeatureBuilder : cv::Algorithm
|
3782
|
+
cv.softcascade.ChannelFeatureBuilder.operator () void =compute
|
3783
|
+
Mat src
|
3784
|
+
Mat channels /O
|
3785
|
+
Size channelsSize cv::Size()
|
3786
|
+
cv.softcascade.ChannelFeatureBuilder.create Ptr_ChannelFeatureBuilder /S
|
3787
|
+
String featureType
|
3788
|
+
class cv.softcascade.Detector : cv::Algorithm
|
3789
|
+
const cv.softcascade.Detector.NO_REJECT 1
|
3790
|
+
const cv.softcascade.Detector.DOLLAR 2
|
3791
|
+
const cv.softcascade.Detector.DEFAULT NO_REJECT
|
3792
|
+
cv.softcascade.Detector.Detector
|
3793
|
+
double minScale 0.4
|
3794
|
+
double maxScale 5.
|
3795
|
+
int scales 55
|
3796
|
+
int rejCriteria 1
|
3797
|
+
cv.softcascade.Detector.load bool
|
3798
|
+
FileNode fileNode
|
3799
|
+
cv.softcascade.Detector.read void
|
3800
|
+
FileNode fileNode
|
3801
|
+
cv.softcascade.Detector.detect void
|
3802
|
+
Mat image
|
3803
|
+
Mat rois
|
3804
|
+
Mat rects /O
|
3805
|
+
Mat confs /O
|
3806
|
+
const cv.softcascade.Octave.DBP 1
|
3807
|
+
const cv.softcascade.Octave.MIP 2
|
3808
|
+
const cv.softcascade.Octave.HEURISTIC 4
|
3809
|
+
const cv.softcascade.ChannelsProcessor.SEPARABLE 2 << 4
|
3810
|
+
const cv.softcascade.SCascade.NO_REJECT 1
|
3811
|
+
const cv.softcascade.SCascade.DOLLAR 2
|
3812
|
+
const cv.softcascade.SCascade.DEFAULT NO_REJECT
|
3813
|
+
const cv.softcascade.SCascade.NMS_MASK 0xF
|
3814
|
+
const cv.ocl.SURF_OCL.X_ROW 0
|
3815
|
+
const cv.ocl.SURF_OCL.Y_ROW 0+1
|
3816
|
+
const cv.ocl.SURF_OCL.LAPLACIAN_ROW 0+2
|
3817
|
+
const cv.ocl.SURF_OCL.OCTAVE_ROW 0+3
|
3818
|
+
const cv.ocl.SURF_OCL.SIZE_ROW 0+4
|
3819
|
+
const cv.ocl.SURF_OCL.ANGLE_ROW 0+5
|
3820
|
+
const cv.ocl.SURF_OCL.HESSIAN_ROW 0+6
|
3821
|
+
const cv.ocl.SURF_OCL.ROWS_COUNT 0+7
|
3822
|
+
const cv.gpu.SURF_GPU.X_ROW 0
|
3823
|
+
const cv.gpu.SURF_GPU.Y_ROW 0+1
|
3824
|
+
const cv.gpu.SURF_GPU.LAPLACIAN_ROW 0+2
|
3825
|
+
const cv.gpu.SURF_GPU.OCTAVE_ROW 0+3
|
3826
|
+
const cv.gpu.SURF_GPU.SIZE_ROW 0+4
|
3827
|
+
const cv.gpu.SURF_GPU.ANGLE_ROW 0+5
|
3828
|
+
const cv.gpu.SURF_GPU.HESSIAN_ROW 0+6
|
3829
|
+
const cv.gpu.SURF_GPU.ROWS_COUNT 0+7
|
3830
|
+
class cv.SIFT : cv::Feature2D
|
3831
|
+
cv.SIFT.SIFT explicit
|
3832
|
+
int nfeatures 0
|
3833
|
+
int nOctaveLayers 3
|
3834
|
+
double contrastThreshold 0.04
|
3835
|
+
double edgeThreshold 10
|
3836
|
+
double sigma 1.6
|
3837
|
+
cv.SIFT.descriptorSize int
|
3838
|
+
cv.SIFT.descriptorType int
|
3839
|
+
class cv.SURF : cv::Feature2D
|
3840
|
+
double hessianThreshold /RW
|
3841
|
+
int nOctaves /RW
|
3842
|
+
int nOctaveLayers /RW
|
3843
|
+
bool extended /RW
|
3844
|
+
bool upright /RW
|
3845
|
+
cv.SURF.SURF
|
3846
|
+
cv.SURF.SURF explicit
|
3847
|
+
double hessianThreshold
|
3848
|
+
int nOctaves 4
|
3849
|
+
int nOctaveLayers 2
|
3850
|
+
bool extended true
|
3851
|
+
bool upright false
|
3852
|
+
cv.SURF.descriptorSize int
|
3853
|
+
cv.SURF.descriptorType int
|
3854
|
+
const cvtest.TS.NUL 0
|
3855
|
+
const cvtest.TS.SUMMARY_IDX 0
|
3856
|
+
const cvtest.TS.SUMMARY 1 << SUMMARY_IDX
|
3857
|
+
const cvtest.TS.LOG_IDX 1
|
3858
|
+
const cvtest.TS.LOG 1 << LOG_IDX
|
3859
|
+
const cvtest.TS.CSV_IDX 2
|
3860
|
+
const cvtest.TS.CSV 1 << CSV_IDX
|
3861
|
+
const cvtest.TS.CONSOLE_IDX 3
|
3862
|
+
const cvtest.TS.CONSOLE 1 << CONSOLE_IDX
|
3863
|
+
const cvtest.TS.MAX_IDX 4
|
3864
|
+
const cvtest.TS.OK 0
|
3865
|
+
const cvtest.TS.FAIL_GENERIC -1
|
3866
|
+
const cvtest.TS.FAIL_MISSING_TEST_DATA -2
|
3867
|
+
const cvtest.TS.FAIL_ERROR_IN_CALLED_FUNC -3
|
3868
|
+
const cvtest.TS.FAIL_EXCEPTION -4
|
3869
|
+
const cvtest.TS.FAIL_MEMORY_EXCEPTION -5
|
3870
|
+
const cvtest.TS.FAIL_ARITHM_EXCEPTION -6
|
3871
|
+
const cvtest.TS.FAIL_MEMORY_CORRUPTION_BEGIN -7
|
3872
|
+
const cvtest.TS.FAIL_MEMORY_CORRUPTION_END -8
|
3873
|
+
const cvtest.TS.FAIL_MEMORY_LEAK -9
|
3874
|
+
const cvtest.TS.FAIL_INVALID_OUTPUT -10
|
3875
|
+
const cvtest.TS.FAIL_MISMATCH -11
|
3876
|
+
const cvtest.TS.FAIL_BAD_ACCURACY -12
|
3877
|
+
const cvtest.TS.FAIL_HANG -13
|
3878
|
+
const cvtest.TS.FAIL_BAD_ARG_CHECK -14
|
3879
|
+
const cvtest.TS.FAIL_INVALID_TEST_DATA -15
|
3880
|
+
const cvtest.TS.SKIPPED 1
|
3881
|
+
1911
|