-
Notifications
You must be signed in to change notification settings - Fork 1
/
OpenCVSharpExtern.def
1997 lines (1995 loc) · 52.8 KB
/
OpenCVSharpExtern.def
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
LIBRARY OPENCVSHARPEXTERN
EXPORTS
CS_GetPropertyKind @1
CS_GetPropertyName @2
CS_GetProperty @3
CS_SetProperty @4
CS_GetPropertyMin @5
CS_GetPropertyMax @6
CS_GetPropertyStep @7
CS_GetPropertyDefault @8
CS_GetStringProperty @9
CS_SetStringProperty @10
CS_GetEnumPropertyChoices @11
CS_CreateUsbCameraDev @12
CS_CreateUsbCameraPath @13
CS_CreateHttpCamera @14
CS_CreateHttpCameraMulti @15
CS_CreateCvSource @16
CS_GetSourceName @17
CS_GetSourceDescription @18
CS_GetSourceLastFrameTime @19
CS_IsSourceConnected @20
CS_GetSourceProperty @21
CS_EnumerateSourceProperties @22
CS_CopySource @23
CS_ReleaseSource @24
CS_PutSourceFrameCpp @25
CS_NotifySourceError @26
CS_SetSourceConnected @27
CS_CreateSourceProperty @28
CS_CreateCvSink @29
CS_CreateCvSinkCallback @30
CS_GetSinkName @31
CS_GetSinkDescription @32
CS_SetSinkSource @33
CS_GetSinkSourceProperty @34
CS_GetSinkSource @35
CS_CopySink @36
CS_ReleaseSink @37
CS_GrabSinkFrameCpp @38
CS_GetSinkError @39
CS_SetSinkEnabled @40
CS_EnumerateUsbCameras @41
CS_FreeEnumeratedUsbCameras @42
CS_EnumerateSources @43
CS_ReleaseEnumeratedSources @44
CS_EnumerateSinks @45
CS_ReleaseEnumeratedSinks @46
CS_FreeString @47
CS_FreeEnumPropertyChoices @48
CS_FreeEnumeratedProperties @49
CS_SetSinkDescription @50
CS_GetSinkKind @51
CS_GetSourceKind @52
CS_GetSourceVideoMode @53
CS_SetSourceVideoModeDiscrete @54
CS_SetSourcePixelFormat @55
CS_SetSourceResolution @56
CS_SetSourceFPS @57
CS_EnumerateSourceVideoModes @58
CS_EnumerateSourceSinks @59
CS_FreeEnumeratedVideoModes @60
CS_SetSourceDescription @61
CS_SetSourceEnumPropertyChoices @62
CS_CreateMjpegServer @63
CS_GetMjpegServerListenAddress @64
CS_GetMjpegServerPort @65
CS_GetUsbCameraPath @66
CS_AddListener @67
CS_RemoveListener @68
CS_GetHostname @69
CS_GetNetworkInterfaces @70
CS_FreeNetworkInterfaces @71
CS_FreeHttpCameraUrls @72
CS_GetHttpCameraKind @73
CS_GetHttpCameraUrls @74
CS_SetHttpCameraUrls @75
CS_SetLogger @76
CS_SetCameraBrightness @77
CS_GetCameraBrightness @78
CS_SetCameraWhiteBalanceAuto @79
CS_SetCameraWhiteBalanceHoldCurrent @80
CS_SetCameraWhiteBalanceManual @81
CS_SetCameraExposureAuto @82
CS_SetCameraExposureHoldCurrent @83
CS_SetCameraExposureManual @84
CS_GrabSinkFrameTimeoutCpp @87
core_Algorithm_write
core_Algorithm_read
core_Algorithm_empty
core_Algorithm_save
core_Algorithm_getDefaultName
features2d_BOWTrainer_add
features2d_BOWTrainer_getDescriptors
features2d_BOWTrainer_descriptorsCount
features2d_BOWTrainer_clear
features2d_BOWKMeansTrainer_new
features2d_BOWKMeansTrainer_delete
features2d_BOWKMeansTrainer_cluster1
features2d_BOWKMeansTrainer_cluster2
features2d_BOWImgDescriptorExtractor_new1
features2d_BOWImgDescriptorExtractor_new2
features2d_BOWImgDescriptorExtractor_delete
features2d_BOWImgDescriptorExtractor_setVocabulary
features2d_BOWImgDescriptorExtractor_getVocabulary
features2d_BOWImgDescriptorExtractor_compute11
features2d_BOWImgDescriptorExtractor_compute12
features2d_BOWImgDescriptorExtractor_compute2
features2d_BOWImgDescriptorExtractor_descriptorSize
features2d_BOWImgDescriptorExtractor_descriptorType
features2d_KeyPointsFilter_runByImageBorder
features2d_KeyPointsFilter_runByKeypointSize
features2d_KeyPointsFilter_runByPixelsMask
features2d_KeyPointsFilter_removeDuplicated
features2d_KeyPointsFilter_retainBest
features2d_Ptr_Feature2D_get
features2d_Ptr_Feature2D_delete
features2d_Feature2D_detect_Mat1
features2d_Feature2D_detect_Mat2
features2d_Feature2D_detect_InputArray
features2d_Feature2D_compute1
features2d_Feature2D_compute2
features2d_Feature2D_detectAndCompute
features2d_Feature2D_descriptorSize
features2d_Feature2D_descriptorType
features2d_Feature2D_defaultNorm
features2d_Feature2D_empty
features2d_AGAST
features2d_AgastFeatureDetector_create
features2d_Ptr_AgastFeatureDetector_delete
features2d_Ptr_AgastFeatureDetector_get
features2d_AgastFeatureDetector_setThreshold
features2d_AgastFeatureDetector_getThreshold
features2d_AgastFeatureDetector_setNonmaxSuppression
features2d_AgastFeatureDetector_getNonmaxSuppression
features2d_AgastFeatureDetector_setType
features2d_AgastFeatureDetector_getType
features2d_AKAZE_create
features2d_Ptr_AKAZE_delete
features2d_Ptr_AKAZE_get
features2d_AKAZE_setDescriptorType
features2d_AKAZE_getDescriptorType
features2d_AKAZE_setDescriptorSize
features2d_AKAZE_getDescriptorSize
features2d_AKAZE_setDescriptorChannels
features2d_AKAZE_getDescriptorChannels
features2d_AKAZE_setThreshold
features2d_AKAZE_getThreshold
features2d_AKAZE_setNOctaves
features2d_AKAZE_getNOctaves
features2d_AKAZE_setNOctaveLayers
features2d_AKAZE_getNOctaveLayers
features2d_AKAZE_setDiffusivity
features2d_AKAZE_getDiffusivity
features2d_KAZE_create
features2d_Ptr_KAZE_delete
features2d_Ptr_KAZE_get
features2d_KAZE_setDiffusivity
features2d_KAZE_getDiffusivity
features2d_KAZE_setExtended
features2d_KAZE_getExtended
features2d_KAZE_setNOctaveLayers
features2d_KAZE_getNOctaveLayers
features2d_KAZE_setNOctaves
features2d_KAZE_getNOctaves
features2d_KAZE_setThreshold
features2d_KAZE_getThreshold
features2d_KAZE_setUpright
features2d_KAZE_getUpright
features2d_SimpleBlobDetector_create
features2d_Ptr_SimpleBlobDetector_get
features2d_Ptr_SimpleBlobDetector_delete
features2d_BRISK_create1
features2d_BRISK_create2
features2d_Ptr_BRISK_delete
features2d_Ptr_BRISK_get
features2d_GFTTDetector_create
features2d_Ptr_GFTTDetector_get
features2d_Ptr_GFTTDetector_delete
features2d_GFTTDetector_setMaxFeatures
features2d_GFTTDetector_getMaxFeatures
features2d_GFTTDetector_setQualityLevel
features2d_GFTTDetector_getQualityLevel
features2d_GFTTDetector_setMinDistance
features2d_GFTTDetector_getMinDistance
features2d_GFTTDetector_setBlockSize
features2d_GFTTDetector_getBlockSize
features2d_GFTTDetector_setHarrisDetector
features2d_GFTTDetector_getHarrisDetector
features2d_GFTTDetector_setK
features2d_GFTTDetector_getK
features2d_FAST1
features2d_FAST2
features2d_FastFeatureDetector_create
features2d_Ptr_FastFeatureDetector_delete
features2d_Ptr_FastFeatureDetector_get
features2d_FastFeatureDetector_setThreshold
features2d_FastFeatureDetector_getThreshold
features2d_FastFeatureDetector_setNonmaxSuppression
features2d_FastFeatureDetector_getNonmaxSuppression
features2d_FastFeatureDetector_setType
features2d_FastFeatureDetector_getType
features2d_MSER_create
features2d_Ptr_MSER_delete
features2d_Ptr_MSER_get
features2d_MSER_detectRegions
features2d_MSER_setDelta
features2d_MSER_getDelta
features2d_MSER_setMinArea
features2d_MSER_getMinArea
features2d_MSER_setMaxArea
features2d_MSER_getMaxArea
features2d_MSER_setPass2Only
features2d_MSER_getPass2Only
features2d_ORB_create
features2d_Ptr_ORB_delete
features2d_Ptr_ORB_get
features2d_ORB_setMaxFeatures
features2d_ORB_getMaxFeatures
features2d_ORB_setScaleFactor
features2d_ORB_getScaleFactor
features2d_ORB_setNLevels
features2d_ORB_getNLevels
features2d_ORB_setEdgeThreshold
features2d_ORB_getEdgeThreshold
features2d_ORB_setFirstLevel
features2d_ORB_getFirstLevel
features2d_ORB_setWTA_K
features2d_ORB_getWTA_K
features2d_ORB_setScoreType
features2d_ORB_getScoreType
features2d_ORB_setPatchSize
features2d_ORB_getPatchSize
features2d_ORB_setFastThreshold
features2d_ORB_getFastThreshold
imgproc_GeneralizedHough_setTemplate1
imgproc_GeneralizedHough_setTemplate2
imgproc_GeneralizedHough_detect1
imgproc_GeneralizedHough_detect2
imgproc_GeneralizedHough_setCannyLowThresh
imgproc_GeneralizedHough_getCannyLowThresh
imgproc_GeneralizedHough_setCannyHighThresh
imgproc_GeneralizedHough_getCannyHighThresh
imgproc_GeneralizedHough_setMinDist
imgproc_GeneralizedHough_getMinDist
imgproc_GeneralizedHough_setDp
imgproc_GeneralizedHough_getDp
imgproc_GeneralizedHough_setMaxBufferSize
imgproc_GeneralizedHough_getMaxBufferSize
imgproc_createGeneralizedHoughBallard
imgproc_Ptr_GeneralizedHoughBallard_get
imgproc_Ptr_GeneralizedHoughBallard_delete
imgproc_GeneralizedHoughBallard_setLevels
imgproc_GeneralizedHoughBallard_getLevels
imgproc_GeneralizedHoughBallard_setVotesThreshold
imgproc_GeneralizedHoughBallard_getVotesThreshold
imgproc_createGeneralizedHoughGuil
imgproc_Ptr_GeneralizedHoughGuil_get
imgproc_Ptr_GeneralizedHoughGuil_delete
imgproc_GeneralizedHoughGuil_setXi
imgproc_GeneralizedHoughGuil_getXi
imgproc_GeneralizedHoughGuil_setLevels
imgproc_GeneralizedHoughGuil_getLevels
imgproc_GeneralizedHoughGuil_setAngleEpsilon
imgproc_GeneralizedHoughGuil_getAngleEpsilon
imgproc_GeneralizedHoughGuil_setMinAngle
imgproc_GeneralizedHoughGuil_getMinAngle
imgproc_GeneralizedHoughGuil_setMaxAngle
imgproc_GeneralizedHoughGuil_getMaxAngle
imgproc_GeneralizedHoughGuil_setAngleStep
imgproc_GeneralizedHoughGuil_getAngleStep
imgproc_GeneralizedHoughGuil_setAngleThresh
imgproc_GeneralizedHoughGuil_getAngleThresh
imgproc_GeneralizedHoughGuil_setMinScale
imgproc_GeneralizedHoughGuil_getMinScale
imgproc_GeneralizedHoughGuil_setMaxScale
imgproc_GeneralizedHoughGuil_getMaxScale
imgproc_GeneralizedHoughGuil_setScaleStep
imgproc_GeneralizedHoughGuil_getScaleStep
imgproc_GeneralizedHoughGuil_setScaleThresh
imgproc_GeneralizedHoughGuil_getScaleThresh
imgproc_GeneralizedHoughGuil_setPosThresh
imgproc_GeneralizedHoughGuil_getPosThresh
imgproc_LineSegmentDetector_detect_OutputArray
imgproc_LineSegmentDetector_detect_vector
imgproc_LineSegmentDetector_drawSegments
imgproc_LineSegmentDetector_compareSegments
imgproc_createLineSegmentDetector
imgproc_Ptr_LineSegmentDetector_delete
imgproc_Ptr_LineSegmentDetector_get
imgproc_LineIterator_new
imgproc_LineIterator_delete
imgproc_LineIterator_operatorEntity
imgproc_LineIterator_operatorPP
imgproc_LineIterator_pos
imgproc_LineIterator_ptr_get
imgproc_LineIterator_ptr_set
imgproc_LineIterator_ptr0_get
imgproc_LineIterator_step_get
imgproc_LineIterator_step_set
imgproc_LineIterator_elemSize_get
imgproc_LineIterator_elemSize_set
imgproc_LineIterator_err_get
imgproc_LineIterator_err_set
imgproc_LineIterator_count_get
imgproc_LineIterator_count_set
imgproc_LineIterator_minusDelta_get
imgproc_LineIterator_minusDelta_set
imgproc_LineIterator_plusDelta_get
imgproc_LineIterator_plusDelta_set
imgproc_LineIterator_minusStep_get
imgproc_LineIterator_minusStep_set
imgproc_LineIterator_plusStep_get
imgproc_LineIterator_plusStep_set
ml_LogisticRegression_getLearningRate
ml_LogisticRegression_setLearningRate
ml_LogisticRegression_getIterations
ml_LogisticRegression_setIterations
ml_LogisticRegression_getRegularization
ml_LogisticRegression_setRegularization
ml_LogisticRegression_getTrainMethod
ml_LogisticRegression_setTrainMethod
ml_LogisticRegression_getMiniBatchSize
ml_LogisticRegression_setMiniBatchSize
ml_LogisticRegression_getTermCriteria
ml_LogisticRegression_setTermCriteria
ml_LogisticRegression_predict
ml_LogisticRegression_get_learnt_thetas
ml_LogisticRegression_create
ml_Ptr_LogisticRegression_delete
ml_Ptr_LogisticRegression_get
ml_StatModel_clear
ml_StatModel_getVarCount
ml_StatModel_empty
ml_StatModel_isTrained
ml_StatModel_isClassifier
ml_StatModel_train1
ml_StatModel_train2
ml_StatModel_calcError
ml_StatModel_predict
ml_StatModel_save
imgcodecs_imread
imgcodecs_imreadmulti
imgcodecs_imwrite
imgcodecs_imdecode_Mat
imgcodecs_imdecode_vector
imgcodecs_imdecode_InputArray
imgcodecs_imencode_vector
imgcodecs_cvConvertImage_CvArr
imgcodecs_cvConvertImage_Mat
imgcodecs_cvHaveImageReader
imgcodecs_cvHaveImageWriter
photo_createCalibrateDebevec
photo_createCalibrateRobertson
photo_Ptr_CalibrateDebevec_delete
photo_Ptr_CalibrateRobertson_delete
photo_Ptr_CalibrateDebevec_get
photo_Ptr_CalibrateRobertson_get
photo_CalibrateCRF_process
shape_ShapeDistanceExtractor_computeDistance
shape_Ptr_ShapeContextDistanceExtractor_delete
shape_Ptr_ShapeContextDistanceExtractor_get
shape_ShapeContextDistanceExtractor_setAngularBins
shape_ShapeContextDistanceExtractor_getAngularBins
shape_ShapeContextDistanceExtractor_setRadialBins
shape_ShapeContextDistanceExtractor_getRadialBins
shape_ShapeContextDistanceExtractor_setInnerRadius
shape_ShapeContextDistanceExtractor_getInnerRadius
shape_ShapeContextDistanceExtractor_setOuterRadius
shape_ShapeContextDistanceExtractor_getOuterRadius
shape_ShapeContextDistanceExtractor_setRotationInvariant
shape_ShapeContextDistanceExtractor_getRotationInvariant
shape_ShapeContextDistanceExtractor_setShapeContextWeight
shape_ShapeContextDistanceExtractor_getShapeContextWeight
shape_ShapeContextDistanceExtractor_setImageAppearanceWeight
shape_ShapeContextDistanceExtractor_getImageAppearanceWeight
shape_ShapeContextDistanceExtractor_setBendingEnergyWeight
shape_ShapeContextDistanceExtractor_getBendingEnergyWeight
shape_ShapeContextDistanceExtractor_setImages
shape_ShapeContextDistanceExtractor_getImages
shape_ShapeContextDistanceExtractor_setIterations
shape_ShapeContextDistanceExtractor_getIterations
shape_ShapeContextDistanceExtractor_setStdDev
shape_ShapeContextDistanceExtractor_getStdDev
shape_createShapeContextDistanceExtractor
shape_Ptr_HausdorffDistanceExtractor_delete
shape_Ptr_HausdorffDistanceExtractor_get
shape_HausdorffDistanceExtractor_setDistanceFlag
shape_HausdorffDistanceExtractor_getDistanceFlag
shape_HausdorffDistanceExtractor_setRankProportion
shape_HausdorffDistanceExtractor_getRankProportion
shape_createHausdorffDistanceExtractor
videoio_VideoCapture_new1
videoio_VideoCapture_new2
videoio_VideoCapture_new3
videoio_VideoCapture_delete
videoio_VideoCapture_open1
videoio_VideoCapture_open2
videoio_VideoCapture_isOpened
videoio_VideoCapture_release
videoio_VideoCapture_grab
videoio_VideoCapture_retrieve
videoio_VideoCapture_operatorRightShift_Mat
videoio_VideoCapture_operatorRightShift_UMat
videoio_VideoCapture_read
videoio_VideoCapture_set
videoio_VideoCapture_get
videoio_VideoWriter_new1
videoio_VideoWriter_new2
videoio_VideoWriter_delete
videoio_VideoWriter_open
videoio_VideoWriter_isOpened
videoio_VideoWriter_release
videoio_VideoWriter_OperatorLeftShift
videoio_VideoWriter_write
videoio_VideoWriter_set
videoio_VideoWriter_get
videoio_VideoWriter_fourcc
core_InputArray_new_byMat
core_InputArray_new_byMatExpr
core_InputArray_new_byScalar
core_InputArray_new_byDouble
core_InputArray_new_byGpuMat
core_InputArray_new_byVectorOfMat
core_InputArray_delete
core_OutputArray_new_byMat
core_OutputArray_new_byGpuMat
core_OutputArray_new_byScalar
core_OutputArray_new_byVectorOfMat
core_OutputArray_delete
core_InputArray_kind
core_OutputArray_getMat
core_OutputArray_getScalar
core_OutputArray_getVectorOfMat
core_FileStorage_new1
core_FileStorage_new2
core_FileStorage_newFromLegacy
core_FileStorage_delete
core_FileStorage_open
core_FileStorage_isOpened
core_FileStorage_release
core_FileStorage_releaseAndGetString
core_FileStorage_getFirstTopLevelNode
core_FileStorage_root
core_FileStorage_indexer
core_FileStorage_toLegacy
core_FileStorage_writeRaw
core_FileStorage_writeObj
core_FileStorage_getDefaultObjectName
core_FileStorage_elname
core_FileStorage_structs
core_FileStorage_state
core_FileStorage_write_int
core_FileStorage_write_float
core_FileStorage_write_double
core_FileStorage_write_String
core_FileStorage_write_Mat
core_FileStorage_write_SparseMat
core_FileStorage_write_vectorOfKeyPoint
core_FileStorage_write_vectorOfDMatch
core_FileStorage_writeScalar_int
core_FileStorage_writeScalar_float
core_FileStorage_writeScalar_double
core_FileStorage_writeScalar_String
core_FileNode_new1
core_FileNode_new2
core_FileNode_new3
core_FileNode_delete
core_FileNode_operatorThis_byString
core_FileNode_operatorThis_byInt
core_FileNode_type
core_FileNode_empty
core_FileNode_isNone
core_FileNode_isSeq
core_FileNode_isMap
core_FileNode_isInt
core_FileNode_isReal
core_FileNode_isString
core_FileNode_isNamed
core_FileNode_name
core_FileNode_size
core_FileNode_toInt
core_FileNode_toFloat
core_FileNode_toDouble
core_FileNode_toString
core_FileNode_toMat
core_FileNode_readRaw
core_FileNode_readObj
core_FileNode_read_int
core_FileNode_read_float
core_FileNode_read_double
core_FileNode_read_String
core_FileNode_read_Mat
core_FileNode_read_SparseMat
core_FileNode_read_vectorOfKeyPoint
core_FileNode_read_vectorOfDMatch
core_PCA_new1
core_PCA_new2
core_PCA_new3
core_PCA_delete
core_PCA_operatorThis
core_PCA_computeVar
core_PCA_project1
core_PCA_project2
core_PCA_backProject1
core_PCA_backProject2
core_PCA_eigenvectors
core_PCA_eigenvalues
core_PCA_mean
core_RNG_new1
core_RNG_new2
core_RNG_next
core_RNG_operator_uchar
core_RNG_operator_schar
core_RNG_operator_ushort
core_RNG_operator_short
core_RNG_operator_uint
core_RNG_operatorThis1
core_RNG_operatorThis2
core_RNG_operator_int
core_RNG_operator_float
core_RNG_operator_double
core_RNG_uniform_int
core_RNG_uniform_float
core_RNG_uniform_double
core_RNG_fill
core_RNG_gaussian
core_SVD_new1
core_SVD_new2
core_SVD_delete
core_SVD_operatorThis
core_SVD_backSubst
core_SVD_static_compute1
core_SVD_static_compute2
core_SVD_static_backSubst
core_SVD_static_solveZ
core_SVD_u
core_SVD_w
core_SVD_vt
core_SparseMat_sizeof
core_SparseMat_new1
core_SparseMat_new2
core_SparseMat_new3
core_SparseMat_delete
core_SparseMat_operatorAssign_SparseMat
core_SparseMat_operatorAssign_Mat
core_SparseMat_clone
core_SparseMat_copyTo_SparseMat
core_SparseMat_copyTo_Mat
core_SparseMat_convertTo_SparseMat
core_SparseMat_convertTo_Mat
core_SparseMat_assignTo
core_SparseMat_create
core_SparseMat_clear
core_SparseMat_addref
core_SparseMat_release
core_SparseMat_elemSize
core_SparseMat_elemSize1
core_SparseMat_type
core_SparseMat_depth
core_SparseMat_channels
core_SparseMat_size1
core_SparseMat_size2
core_SparseMat_dims
core_SparseMat_nzcount
core_SparseMat_hash_1d
core_SparseMat_hash_2d
core_SparseMat_hash_3d
core_SparseMat_hash_nd
core_SparseMat_ptr_1d
core_SparseMat_ptr_1d
core_SparseMat_ptr_2d
core_SparseMat_ptr_2d
core_SparseMat_ptr_3d
core_SparseMat_ptr_3d
core_SparseMat_ptr_nd
core_SparseMat_ptr_nd
ml_RTrees_getCalculateVarImportance
ml_RTrees_setCalculateVarImportance
ml_RTrees_getActiveVarCount
ml_RTrees_setActiveVarCount
ml_RTrees_getTermCriteria
ml_RTrees_setTermCriteria
ml_RTrees_getVarImportance
ml_RTrees_create
ml_Ptr_RTrees_delete
ml_Ptr_RTrees_get
ml_NormalBayesClassifier_predictProb
ml_NormalBayesClassifier_create
ml_Ptr_NormalBayesClassifier_delete
ml_Ptr_NormalBayesClassifier_get
calib3d_StereoMatcher_compute
calib3d_StereoMatcher_getMinDisparity
calib3d_StereoMatcher_setMinDisparity
calib3d_StereoMatcher_getNumDisparities
calib3d_StereoMatcher_setNumDisparities
calib3d_StereoMatcher_getBlockSize
calib3d_StereoMatcher_setBlockSize
calib3d_StereoMatcher_getSpeckleWindowSize
calib3d_StereoMatcher_setSpeckleWindowSize
calib3d_StereoMatcher_getSpeckleRange
calib3d_StereoMatcher_setSpeckleRange
calib3d_StereoMatcher_getDisp12MaxDiff
calib3d_StereoMatcher_setDisp12MaxDiff
calib3d_Ptr_StereoBM_delete
calib3d_StereoBM_create
calib3d_StereoBM_getPreFilterType
calib3d_StereoBM_setPreFilterType
calib3d_StereoBM_getPreFilterSize
calib3d_StereoBM_setPreFilterSize
calib3d_StereoBM_getPreFilterCap
calib3d_StereoBM_setPreFilterCap
calib3d_StereoBM_getTextureThreshold
calib3d_StereoBM_setTextureThreshold
calib3d_StereoBM_getUniquenessRatio
calib3d_StereoBM_setUniquenessRatio
calib3d_StereoBM_getSmallerBlockSize
calib3d_StereoBM_setSmallerBlockSize
calib3d_StereoBM_getROI1
calib3d_StereoBM_setROI1
calib3d_StereoBM_getROI2
calib3d_StereoBM_setROI2
calib3d_Ptr_StereoSGBM_delete
calib3d_StereoSGBM_create
calib3d_StereoSGBM_getPreFilterCap
calib3d_StereoSGBM_setPreFilterCap
calib3d_StereoSGBM_getUniquenessRatio
calib3d_StereoSGBM_setUniquenessRatio
calib3d_StereoSGBM_getP1
calib3d_StereoSGBM_setP1
calib3d_StereoSGBM_getP2
calib3d_StereoSGBM_setP2
calib3d_StereoSGBM_getMode
calib3d_StereoSGBM_setMode
cuda_GpuMat_delete
cuda_GpuMat_new1
cuda_GpuMat_new2
cuda_GpuMat_new3
cuda_GpuMat_new4
cuda_GpuMat_new5
cuda_GpuMat_new6
cuda_GpuMat_new7
cuda_GpuMat_new8
cuda_GpuMat_new9
cuda_GpuMat_new10
cuda_GpuMat_new11
cuda_GpuMat_opToMat
cuda_GpuMat_opToGpuMat
cuda_GpuMat_opAssign
cuda_GpuMat_opRange1
cuda_GpuMat_opRange2
cuda_GpuMat_flags
cuda_GpuMat_rows
cuda_GpuMat_cols
cuda_GpuMat_step
cuda_GpuMat_data
cuda_GpuMat_refcount
cuda_GpuMat_datastart
cuda_GpuMat_dataend
cuda_GpuMat_upload
cuda_GpuMat_download
cuda_GpuMat_row
cuda_GpuMat_col
cuda_GpuMat_rowRange
cuda_GpuMat_colRange
cuda_GpuMat_clone
cuda_GpuMat_copyTo1
cuda_GpuMat_copyTo2
cuda_GpuMat_convertTo
cuda_GpuMat_assignTo
cuda_GpuMat_setTo
cuda_GpuMat_reshape
cuda_GpuMat_create1
cuda_GpuMat_create2
cuda_GpuMat_release
cuda_GpuMat_swap
cuda_GpuMat_locateROI
cuda_GpuMat_adjustROI
cuda_GpuMat_isContinuous
cuda_GpuMat_elemSize
cuda_GpuMat_elemSize1
cuda_GpuMat_type
cuda_GpuMat_depth
cuda_GpuMat_channels
cuda_GpuMat_step1
cuda_GpuMat_size
cuda_GpuMat_empty
cuda_GpuMat_ptr
cuda_createContinuous1
cuda_createContinuous2
cuda_ensureSizeIsEnough
video_BackgroundSubtractor_getBackgroundImage
video_BackgroundSubtractor_apply
video_Ptr_BackgroundSubtractor_delete
video_Ptr_BackgroundSubtractor_get
video_createBackgroundSubtractorMOG2
video_Ptr_BackgroundSubtractorMOG2_delete
video_Ptr_BackgroundSubtractorMOG2_get
video_BackgroundSubtractorMOG2_getHistory
video_BackgroundSubtractorMOG2_setHistory
video_BackgroundSubtractorMOG2_getNMixtures
video_BackgroundSubtractorMOG2_setNMixtures
video_BackgroundSubtractorMOG2_getBackgroundRatio
video_BackgroundSubtractorMOG2_setBackgroundRatio
video_BackgroundSubtractorMOG2_getVarThreshold
video_BackgroundSubtractorMOG2_setVarThreshold
video_BackgroundSubtractorMOG2_getVarThresholdGen
video_BackgroundSubtractorMOG2_setVarThresholdGen
video_BackgroundSubtractorMOG2_getVarInit
video_BackgroundSubtractorMOG2_setVarInit
video_BackgroundSubtractorMOG2_getVarMin
video_BackgroundSubtractorMOG2_setVarMin
video_BackgroundSubtractorMOG2_getVarMax
video_BackgroundSubtractorMOG2_setVarMax
video_BackgroundSubtractorMOG2_getComplexityReductionThreshold
video_BackgroundSubtractorMOG2_setComplexityReductionThreshold
video_BackgroundSubtractorMOG2_getDetectShadows
video_BackgroundSubtractorMOG2_setDetectShadows
video_BackgroundSubtractorMOG2_getShadowValue
video_BackgroundSubtractorMOG2_setShadowValue
video_BackgroundSubtractorMOG2_getShadowThreshold
video_BackgroundSubtractorMOG2_setShadowThreshold
video_createBackgroundSubtractorKNN
video_Ptr_BackgroundSubtractorKNN_delete
video_Ptr_BackgroundSubtractorKNN_get
video_BackgroundSubtractorKNN_getHistory
video_BackgroundSubtractorKNN_setHistory
video_BackgroundSubtractorKNN_getNSamples
video_BackgroundSubtractorKNN_setNSamples
video_BackgroundSubtractorKNN_getDist2Threshold
video_BackgroundSubtractorKNN_setDist2Threshold
video_BackgroundSubtractorKNN_getkNNSamples
video_BackgroundSubtractorKNN_setkNNSamples
video_BackgroundSubtractorKNN_getDetectShadows
video_BackgroundSubtractorKNN_setDetectShadows
video_BackgroundSubtractorKNN_getShadowValue
video_BackgroundSubtractorKNN_setShadowValue
video_BackgroundSubtractorKNN_getShadowThreshold
video_BackgroundSubtractorKNN_setShadowThreshold
features2d_DescriptorMatcher_add
features2d_DescriptorMatcher_getTrainDescriptors
features2d_DescriptorMatcher_clear
features2d_DescriptorMatcher_empty
features2d_DescriptorMatcher_isMaskSupported
features2d_DescriptorMatcher_train
features2d_DescriptorMatcher_match1
features2d_DescriptorMatcher_knnMatch1
features2d_DescriptorMatcher_radiusMatch1
features2d_DescriptorMatcher_match2
features2d_DescriptorMatcher_knnMatch2
features2d_DescriptorMatcher_radiusMatch2
features2d_DescriptorMatcher_create
features2d_Ptr_DescriptorMatcher_get
features2d_Ptr_DescriptorMatcher_delete
features2d_BFMatcher_new
features2d_BFMatcher_delete
features2d_BFMatcher_isMaskSupported
features2d_Ptr_BFMatcher_get
features2d_Ptr_BFMatcher_delete
features2d_FlannBasedMatcher_new
features2d_FlannBasedMatcher_delete
features2d_FlannBasedMatcher_add
features2d_FlannBasedMatcher_clear
features2d_FlannBasedMatcher_train
features2d_FlannBasedMatcher_isMaskSupported
features2d_Ptr_FlannBasedMatcher_get
features2d_Ptr_FlannBasedMatcher_delete
ml_EM_getClustersNumber
ml_EM_setClustersNumber
ml_EM_getCovarianceMatrixType
ml_EM_setCovarianceMatrixType
ml_EM_getTermCriteria
ml_EM_setTermCriteria
ml_EM_getWeights
ml_EM_getMeans
ml_EM_getCovs
ml_EM_predict2
ml_EM_trainEM
ml_EM_trainE
ml_EM_trainM
ml_EM_create
ml_Ptr_EM_get
ml_EM_delete
ml_SVM_getType
ml_SVM_setType
ml_SVM_getGamma
ml_SVM_setGamma
ml_SVM_getCoef0
ml_SVM_setCoef0
ml_SVM_getDegree
ml_SVM_setDegree
ml_SVM_getC
ml_SVM_setC
ml_SVM_getP
ml_SVM_setP
ml_SVM_getNu
ml_SVM_setNu
ml_SVM_getClassWeights
ml_SVM_setClassWeights
ml_SVM_getTermCriteria
ml_SVM_setTermCriteria
ml_SVM_getKernelType
ml_SVM_setKernel
ml_SVM_getSupportVectors
ml_SVM_getDecisionFunction
ml_SVM_getDefaultGrid
ml_SVM_create
ml_Ptr_SVM_delete
ml_Ptr_SVM_get
ml_KNearest_getDefaultK
ml_KNearest_setDefaultK
ml_KNearest_getIsClassifier
ml_KNearest_setIsClassifier
ml_KNearest_getEmax
ml_KNearest_setEmax
ml_KNearest_getAlgorithmType
ml_KNearest_setAlgorithmType
ml_KNearest_findNearest
ml_KNearest_create
ml_Ptr_KNearest_delete
ml_Ptr_KNearest_get
ml_DTrees_getMaxCategories
ml_DTrees_setMaxCategories
ml_DTrees_getMaxDepth
ml_DTrees_setMaxDepth
ml_DTrees_getMinSampleCount
ml_DTrees_setMinSampleCount
ml_DTrees_getCVFolds
ml_DTrees_setCVFolds
ml_DTrees_getUseSurrogates
ml_DTrees_setUseSurrogates
ml_DTrees_getUse1SERule
ml_DTrees_setUse1SERule
ml_DTrees_getTruncatePrunedTree
ml_DTrees_setTruncatePrunedTree
ml_DTrees_getRegressionAccuracy
ml_DTrees_setRegressionAccuracy
ml_DTrees_getPriors
ml_DTrees_setPriors
ml_DTrees_getRoots
ml_DTrees_getNodes
ml_DTrees_getSplits
ml_DTrees_getSubsets
ml_DTrees_create
ml_Ptr_DTrees_delete
ml_Ptr_DTrees_get
ml_Boost_getBoostType
ml_Boost_setBoostType
ml_Boost_getWeakCount
ml_Boost_setWeakCount
ml_Boost_getWeightTrimRate
ml_Boost_setWeightTrimRate
ml_Boost_create
ml_Ptr_Boost_delete
ml_Ptr_Boost_get
ml_ANN_MLP_setTrainMethod
ml_ANN_MLP_getTrainMethod
ml_ANN_MLP_setActivationFunction
ml_ANN_MLP_setLayerSizes
ml_ANN_MLP_getLayerSizes
ml_ANN_MLP_getTermCriteria
ml_ANN_MLP_setTermCriteria
ml_ANN_MLP_getBackpropWeightScale
ml_ANN_MLP_setBackpropWeightScale
ml_ANN_MLP_getBackpropMomentumScale
ml_ANN_MLP_setBackpropMomentumScale
ml_ANN_MLP_getRpropDW0
ml_ANN_MLP_setRpropDW0
ml_ANN_MLP_getRpropDWPlus
ml_ANN_MLP_setRpropDWPlus
ml_ANN_MLP_getRpropDWMinus
ml_ANN_MLP_setRpropDWMinus
ml_ANN_MLP_getRpropDWMin
ml_ANN_MLP_setRpropDWMin
ml_ANN_MLP_getRpropDWMax
ml_ANN_MLP_setRpropDWMax
ml_ANN_MLP_getWeights
ml_ANN_MLP_create
ml_Ptr_ANN_MLP_delete
ml_Ptr_ANN_MLP_get
cuda_getCudaEnabledDeviceCount
cuda_setDevice
cuda_getDevice
cuda_resetDevice
cuda_deviceSupports
cuda_TargetArchs_builtWith
cuda_TargetArchs_has
cuda_TargetArchs_hasPtx
cuda_TargetArchs_hasBin
cuda_TargetArchs_hasEqualOrLessPtx
cuda_TargetArchs_hasEqualOrGreater
cuda_TargetArchs_hasEqualOrGreaterPtx
cuda_TargetArchs_hasEqualOrGreaterBin
cuda_DeviceInfo_new1
cuda_DeviceInfo_new2
cuda_DeviceInfo_delete
cuda_DeviceInfo_name
cuda_DeviceInfo_majorVersion
cuda_DeviceInfo_minorVersion
cuda_DeviceInfo_multiProcessorCount
cuda_DeviceInfo_sharedMemPerBlock
cuda_DeviceInfo_queryMemory
cuda_DeviceInfo_freeMemory
cuda_DeviceInfo_totalMemory
cuda_DeviceInfo_supports
cuda_DeviceInfo_isCompatible
cuda_DeviceInfo_deviceID
cuda_DeviceInfo_canMapHostMemory
cuda_printCudaDeviceInfo
cuda_printShortCudaDeviceInfo
cuda_Stream_new1
cuda_Stream_new2
cuda_Stream_delete
cuda_Stream_opAssign
cuda_Stream_queryIfComplete
cuda_Stream_waitForCompletion
cuda_Stream_enqueueHostCallback
cuda_Stream_Null
cuda_Stream_bool
imgproc_createCLAHE
imgproc_Ptr_CLAHE_delete
imgproc_Ptr_CLAHE_get
imgproc_CLAHE_apply
imgproc_CLAHE_setClipLimit
imgproc_CLAHE_getClipLimit
imgproc_CLAHE_setTilesGridSize
imgproc_CLAHE_getTilesGridSize
imgproc_CLAHE_collectGarbage
photo_inpaint
photo_fastNlMeansDenoising
photo_fastNlMeansDenoisingColored
photo_fastNlMeansDenoisingMulti
photo_fastNlMeansDenoisingColoredMulti
photo_denoise_TVL1
photo_decolor
photo_seamlessClone
photo_colorChange
photo_illuminationChange
photo_textureFlattening
photo_edgePreservingFilter
photo_detailEnhance
photo_pencilSketch
photo_stylization
superres_FrameSource_nextFrame
superres_FrameSource_reset
superres_createFrameSource_Empty
superres_createFrameSource_Video
superres_createFrameSource_Video_CUDA
superres_createFrameSource_Camera
superres_Ptr_FrameSource_get
superres_Ptr_FrameSource_delete
superres_SuperResolution_setInput
superres_SuperResolution_nextFrame
superres_SuperResolution_reset
superres_SuperResolution_collectGarbage
superres_createSuperResolution_BTVL1
superres_createSuperResolution_BTVL1_CUDA
superres_Ptr_SuperResolution_get
superres_Ptr_SuperResolution_delete
superres_DenseOpticalFlowExt_calc
superres_DenseOpticalFlowExt_collectGarbage
superres_Ptr_DenseOpticalFlowExt_get
superres_Ptr_DenseOpticalFlowExt_delete
superres_createOptFlow_Farneback
superres_createOptFlow_Farneback_CUDA
superres_createOptFlow_DualTVL1
superres_createOptFlow_DualTVL1_CUDA
superres_createOptFlow_Brox_CUDA
superres_createOptFlow_PyrLK_CUDA
stitching_createStitcher
stitching_Ptr_Stitcher_delete
stitching_Ptr_Stitcher_get
stitching_Stitcher_registrationResol
stitching_Stitcher_setRegistrationResol
stitching_Stitcher_seamEstimationResol
stitching_Stitcher_setSeamEstimationResol
stitching_Stitcher_compositingResol
stitching_Stitcher_setCompositingResol
stitching_Stitcher_panoConfidenceThresh
stitching_Stitcher_setPanoConfidenceThresh
stitching_Stitcher_waveCorrection
stitching_Stitcher_setWaveCorrection
stitching_Stitcher_waveCorrectKind
stitching_Stitcher_setWaveCorrectKind
stitching_Stitcher_estimateTransform_InputArray1
stitching_Stitcher_estimateTransform_InputArray2
stitching_Stitcher_estimateTransform_MatArray1
stitching_Stitcher_estimateTransform_MatArray2
stitching_Stitcher_composePanorama1
stitching_Stitcher_composePanorama2_InputArray
stitching_Stitcher_composePanorama2_MatArray
stitching_Stitcher_stitch1_InputArray
stitching_Stitcher_stitch1_MatArray
stitching_Stitcher_stitch2_InputArray
stitching_Stitcher_stitch2_MatArray
stitching_Stitcher_component
stitching_Stitcher_workScale
features2d_drawKeypoints
features2d_drawMatches1