forked from kyamagu/mexopencv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmexopencv_mac64.prj
1313 lines (1313 loc) · 63.4 KB
/
mexopencv_mac64.prj
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
<deployment-project plugin="plugin.toolbox" plugin-version="1.0">
<configuration build-checksum="2368821083" file="mexopencv_mac64.prj" location="" name="mexopencv_mac64" target="target.toolbox" target-name="Package Toolbox">
<param.appname>mexopencv</param.appname>
<param.authnamewatermark>Philippe Gagné</param.authnamewatermark>
<param.email />
<param.company />
<param.summary>Access OpenCV from Matlab.</param.summary>
<param.description />
<param.screenshot>${PROJECT_ROOT}/build/OpenCV_Logo.png</param.screenshot>
<param.version>3.4.12.0</param.version>
<param.output>${PROJECT_ROOT}/mexopencv_mac64.mltbx</param.output>
<param.products.name />
<param.products.id />
<param.products.version />
<param.platforms />
<param.guid>480a9483-bfbe-41ce-9aed-6cc0e4f0d36d</param.guid>
<param.exclude.filters>% List files contained in your toolbox folder that you would like to exclude
% from packaging. Excludes should be listed relative to the toolbox folder.
% Some examples of how to specify excludes are provided below:
%
% A single file in the toolbox folder:
% .svn
%
% A single file in a subfolder of the toolbox folder:
% example/.svn
%
% All files in a subfolder of the toolbox folder:
% example/*
%
% All files of a certain name in all subfolders of the toolbox folder:
% **/.svn
%
% All files matching a pattern in all subfolders of the toolbox folder:
% **/*.bak
%
**/.DS_Store
.*
lib/
appveyor.yml
**/*.*~
build/
opencv_contrib/+cv
test/dnn/A*
test/dnn/C*
test/dnn/E*
test/dnn/F*
test/dnn/I*
test/dnn/M*
test/dnn/O*
test/dnn/R*
test/dnn/S*
test/dnn/V*</param.exclude.filters>
<param.exclude.pcodedmfiles>true</param.exclude.pcodedmfiles>
<param.examples><?xml version="1.0" encoding="utf-8"?>
<examples>
<exampleCategory name="saliency: Saliency API">
<example name="Saliency Algorithms" type="html">
<file type="source">/opencv_contrib/samples/html/computeSaliency_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
</exampleCategory>
<exampleCategory name="dnn_objdetect: DNN used for Object Detection">
<example name="DNN for image classification" type="html">
<file type="source">/opencv_contrib/samples/html/dnn_img_classify_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Object Detection using Convolutional Neural Networks" type="html">
<file type="source">/opencv_contrib/samples/html/dnn_objdetect_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
</exampleCategory>
<exampleCategory name="optflow: Optical Flow Algorithms">
<example name="Optical Flow Evaluation" type="html">
<file type="source">/opencv_contrib/samples/html/optical_flow_evaluation_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Global Patch Collider" type="html">
<file type="source">/opencv_contrib/samples/html/gpc_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
</exampleCategory>
<exampleCategory name="Video Tutorials (OpenCV 2.4)">
<example name="Tutorial 1: Setup (3 min, 23 sec)" type="html">
<file type="source"/>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Tutorial 2: Face Detection (1 min, 42 sec)" type="html">
<file type="source"/>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Tutorial 3: Webcam Input (1 min, 14 sec)" type="html">
<file type="source"/>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Tutorial 4: Feature Extraction and Matching (2 min, 21 sec)" type="html">
<file type="source"/>
<file type="main"/>
<file type="thumbnail"/>
</example>
</exampleCategory>
<exampleCategory name="aruco: ArUco Marker Detection">
<example name="ArUco Marker Image" type="html">
<file type="source">/opencv_contrib/samples/html/aruco_create_marker_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Detection of ArUco Markers" type="html">
<file type="source">/opencv_contrib/samples/html/aruco_detect_markers_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="ArUco Grid Board Image" type="html">
<file type="source">/opencv_contrib/samples/html/aruco_create_board_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Detection of ArUco Board" type="html">
<file type="source">/opencv_contrib/samples/html/aruco_detect_board_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="ChArUco Board Image" type="html">
<file type="source">/opencv_contrib/samples/html/aruco_create_board_charuco_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Detection of ChArUco Corners" type="html">
<file type="source">/opencv_contrib/samples/html/aruco_detect_board_charuco_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="ChArUco Diamond Image" type="html">
<file type="source">/opencv_contrib/samples/html/aruco_create_diamond_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Detection of Diamond Markers" type="html">
<file type="source">/opencv_contrib/samples/html/aruco_detect_diamonds_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Camera Calibration using ArUco Board" type="html">
<file type="source">/opencv_contrib/samples/html/aruco_calibrate_camera_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Camera Calibration using ChArUco Board" type="html">
<file type="source">/opencv_contrib/samples/html/aruco_calibrate_camera_charuco_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
</exampleCategory>
<exampleCategory name="ximgproc: Extended Image Processing">
<example name="Superpixels Segmentation" type="html">
<file type="source">/opencv_contrib/samples/html/superpixels_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Line Finding with the Fast Hough transform" type="html">
<file type="source">/opencv_contrib/samples/html/fast_hough_transform_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Structured Forests for Fast Edge Detection" type="html">
<file type="source">/opencv_contrib/samples/html/structured_edge_detection_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Graph-Based Image Segmentation" type="html">
<file type="source">/opencv_contrib/samples/html/graphsegmentation_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Niblack Thresholding" type="html">
<file type="source">/opencv_contrib/samples/html/niblack_thresholding_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Domain Transform Filter" type="html">
<file type="source">/opencv_contrib/samples/html/dtFilter_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Disparity Map Filtering" type="html">
<file type="source">/opencv_contrib/samples/html/disparity_filtering_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Fast Line Detector" type="html">
<file type="source">/opencv_contrib/samples/html/fld_lines_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Perona-Malik Anisotropic Diffusion" type="html">
<file type="source">/opencv_contrib/samples/html/anisodiff_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Pei&amp;Lin Normalization" type="html">
<file type="source">/opencv_contrib/samples/html/peilin_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Bright edges detection" type="html">
<file type="source">/opencv_contrib/samples/html/brightedges_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Fourier Descriptors" type="html">
<file type="source">/opencv_contrib/samples/html/fourier_descriptors_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
</exampleCategory>
<exampleCategory name="objdetect: Object Detection">
<example name="Face Detection" type="html">
<file type="source">/samples/html/facedetect.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Face and Eyes Detection" type="html">
<file type="source">/samples/html/face_eyes_detect_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Facial Features Detection" type="html">
<file type="source">/samples/html/facial_features_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Smile Detection" type="html">
<file type="source">/samples/html/smiledetect_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="DBT Face Detection" type="html">
<file type="source">/samples/html/dbt_face_detection_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="People Detection using HoG" type="html">
<file type="source">/samples/html/peopledetect_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
</exampleCategory>
<exampleCategory name="plot: Plot function for Mat data">
<example name="Plotting demo" type="html">
<file type="source">/opencv_contrib/samples/html/plotting_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
</exampleCategory>
<exampleCategory name="xphoto: Additional Photo Processing Algorithms">
<example name="White Balancing" type="html">
<file type="source">/opencv_contrib/samples/html/color_balance_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
</exampleCategory>
<exampleCategory name="photo: Computational Photography">
<example name="High Dynamic Range Imaging" type="html">
<file type="source">/samples/html/hdr_imaging_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Inpainting" type="html">
<file type="source">/samples/html/inpaint_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Non-Photorealistic Rendering" type="html">
<file type="source">/samples/html/npr_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Seamless Cloning" type="html">
<file type="source">/samples/html/cloning_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Non-Local Means Image Denoising" type="html">
<file type="source">/samples/html/non_local_means_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
</exampleCategory>
<exampleCategory name="feature2d: 2D Features Framework">
<example name="FAST Algorithm for Corner Detection" type="html">
<file type="source">/samples/html/feature_detector_fast_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="ORB (Oriented FAST and Rotated BRIEF)" type="html">
<file type="source">/samples/html/orb_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Feature Matching + Homography to find a known object" type="html">
<file type="source">/samples/html/feature_homography_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Affine invariant feature-based image matching" type="html">
<file type="source">/samples/html/asift_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="AKAZE local features matching" type="html">
<file type="source">/samples/html/akaze_match_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="AKAZE and ORB planar tracking" type="html">
<file type="source">/samples/html/planar_tracker_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Detect, Compute, and Match Descriptors" type="html">
<file type="source">/samples/html/descriptors_compute_match_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Blob Detection" type="html">
<file type="source">/samples/html/detect_blob_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Maximally Stable Extremal Regions (MSER)" type="html">
<file type="source">/samples/html/mser_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Multi-target planar tracking" type="html">
<file type="source">/samples/html/plane_tracker_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Feature homography based planar tracking" type="html">
<file type="source">/samples/html/feature_homography_track_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Planar augmented reality" type="html">
<file type="source">/samples/html/plane_ar_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Correlation-based Tracking using MOSSE Filters" type="html">
<file type="source">/samples/html/mosse_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
</exampleCategory>
<exampleCategory name="datasets: Framework for Working with Different Datasets">
<example name="The MNIST dataset of handwritten digits" type="html">
<file type="source">/opencv_contrib/samples/html/dataset_mnist_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
</exampleCategory>
<exampleCategory name="calib3d: Camera Calibration and 3D Reconstruction">
<example name="Collect Calibration Pattern Images" type="html">
<file type="source">/samples/html/calibration_capture_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Camera Calibration" type="html">
<file type="source">/samples/html/calibration_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Pose Estimation" type="html">
<file type="source">/samples/html/calibration_pose_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Stereo Calibration with square chessboard" type="html">
<file type="source">/samples/html/stereo_calibration_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Stereo Image Matching" type="html">
<file type="source">/samples/html/stereo_match_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Epipolar Geometry" type="html">
<file type="source">/samples/html/epipolar_geometry_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
</exampleCategory>
<exampleCategory name="hfs: Hierarchical Feature Selection for Efficient Image Segmentation">
<example name="Image Segmentation using Hierachical Feature Selection (HFS)" type="html">
<file type="source">/opencv_contrib/samples/html/hfs_segment_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
</exampleCategory>
<exampleCategory name="videoio: Media I/O">
<example name="Video Capture" type="html">
<file type="source">/samples/html/capture_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Creating a video" type="html">
<file type="source">/samples/html/video_write_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Synthetic video" type="html">
<file type="source">/samples/html/synth_video_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
</exampleCategory>
<exampleCategory name="bgsegm: Improved Background-Foreground Segmentation Methods">
<example name="Background Subtractor" type="html">
<file type="source">/opencv_contrib/samples/html/BackgroundSubtractorDemo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Evaluation of background subtraction algorithms on synthetic sequence" type="html">
<file type="source">/opencv_contrib/samples/html/bgsegm_synthetic_seq_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
</exampleCategory>
<exampleCategory name="dnn: Deep Neural Network module">
<example name="Deep Neural Network with Caffe models" type="html">
<file type="source">/samples/html/caffe_googlenet_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Fully-Convolutional Networks for Semantic Segmentation" type="html">
<file type="source">/samples/html/fcn_semsegm_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="DNN Image Classification" type="html">
<file type="source">/samples/html/dnn_image_classification_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="DNN Semantic Segmentation" type="html">
<file type="source">/samples/html/dnn_semantic_segmentation_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="DNN Object Detection" type="html">
<file type="source">/samples/html/dnn_object_detection_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="DNN Face Detection" type="html">
<file type="source">/samples/html/dnn_face_detector.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="DNN Face Detection and Recognition" type="html">
<file type="source">/samples/html/dnn_face_recognition.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="DNN: Style Transfer" type="html">
<file type="source">/samples/html/dnn_style_transfer.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
</exampleCategory>
<exampleCategory name="face: Face Analysis">
<example name="Face recognition" type="html">
<file type="source">/opencv_contrib/samples/html/facerec_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Face landmark detection in an image" type="html">
<file type="source">/opencv_contrib/samples/html/facemark_kazemi_detect_img_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Face landmark detection in a video" type="html">
<file type="source">/opencv_contrib/samples/html/facemark_kazemi_detect_vid_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Training face landmark detector" type="html">
<file type="source">/opencv_contrib/samples/html/facemark_kazemi_train_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Parameters for training face landmark detector" type="html">
<file type="source">/opencv_contrib/samples/html/facemark_kazemi_train_config_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Facemark AAM training demo" type="html">
<file type="source">/opencv_contrib/samples/html/facemark_aam_train_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Facemark LBF training demo" type="html">
<file type="source">/opencv_contrib/samples/html/facemark_lbf_train_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Face landmark detection in a video (LBF)" type="html">
<file type="source">/opencv_contrib/samples/html/facemark_lbf_fitting_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Face swapping using face landmark detection" type="html">
<file type="source">/opencv_contrib/samples/html/face_swapping_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
</exampleCategory>
<exampleCategory name="xfeatures2d: Extra 2D Features Framework">
<example name="Introduction to SIFT (Scale-Invariant Feature Transform)" type="html">
<file type="source">/opencv_contrib/samples/html/SIFT_detector.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Introduction to SURF (Speeded-Up Robust Features)" type="html">
<file type="source">/opencv_contrib/samples/html/SURF_detector.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="BRIEF (Binary Robust Independent Elementary Features)" type="html">
<file type="source">/opencv_contrib/samples/html/descriptor_extractor_brief_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Feature Matching" type="html">
<file type="source">/opencv_contrib/samples/html/SURF_descriptor.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="GMS matching strategy (image)" type="html">
<file type="source">/opencv_contrib/samples/html/gms_matcher_img_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="GMS matching strategy (video)" type="html">
<file type="source">/opencv_contrib/samples/html/gms_matcher_vid_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
</exampleCategory>
<exampleCategory name="core: Core Functionality">
<example name="Rotated Rectangle" type="html">
<file type="source">/samples/html/RotatedRect_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Reading/Writing XML and YAML files" type="html">
<file type="source">/samples/html/FileStorage_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Serialization Functionality" type="html">
<file type="source">/samples/html/file_storage_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Image Blending" type="html">
<file type="source">/samples/html/linear_blending_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Bitwise Operations on Images" type="html">
<file type="source">/samples/html/image_bitwise_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Brightness and contrast adjustments" type="html">
<file type="source">/samples/html/linear_transform_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Image padding" type="html">
<file type="source">/samples/html/padding_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="inRange Thresholding Operations" type="html">
<file type="source">/samples/html/threshold_inrange_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Discrete Fourier Transform" type="html">
<file type="source">/samples/html/dft_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Kaleidoscope" type="html">
<file type="source">/samples/html/kaleidoscope_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
</exampleCategory>
<exampleCategory name="imgcodecs: Image File Reading and Writing">
<example name="Image similarity under lossy compression" type="html">
<file type="source">/samples/html/image_similarity_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Create PNG image with alpha transparency" type="html">
<file type="source">/samples/html/rgba_png_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
</exampleCategory>
<exampleCategory name="imgproc: Image Processing">
<example name="Demonstration of drawing functions" type="html">
<file type="source">/samples/html/drawing_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Basic Geometric Drawing" type="html">
<file type="source">/samples/html/drawing_basic_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Demonstration of text drawing functions" type="html">
<file type="source">/samples/html/draw_text_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Colormaps" type="html">
<file type="source">/samples/html/falsecolor_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Delaunay triangulation" type="html">
<file type="source">/samples/html/delaunay2_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Convex Hull demo" type="html">
<file type="source">/samples/html/hull_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Retrieve and label connected components from a binary image." type="html">
<file type="source">/samples/html/contours_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Contours Demo" type="html">
<file type="source">/samples/html/contours2_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Watershed Demo" type="html">
<file type="source">/samples/html/watershed_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Contours in OpenCV" type="html">
<file type="source">/samples/html/contours_hierarchy_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Finding contours in an image" type="html">
<file type="source">/samples/html/findContours_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Flood-filling in an image" type="html">
<file type="source">/samples/html/ffilldemo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Flood-Fill demo" type="html">
<file type="source">/samples/html/floodfill_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Image Thresholding" type="html">
<file type="source">/samples/html/thresholding_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Threshold demo" type="html">
<file type="source">/samples/html/threshold_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Smoothing Demo" type="html">
<file type="source">/samples/html/smoothing_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Smoothing Images" type="html">
<file type="source">/samples/html/gausian_median_blur_bilateral_filter.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Polar Transforms demo" type="html">
<file type="source">/samples/html/polar_transforms_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Erosion and Dilation" type="html">
<file type="source">/samples/html/morphology_demo_gui1.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Advanced Morphology Transformations Demo" type="html">
<file type="source">/samples/html/morphology_demo_gui2.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Extracting horizontal and vertical lines using morphology" type="html">
<file type="source">/samples/html/morphology_demo_3.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Hit-or-Miss Morphological Operation" type="html">
<file type="source">/samples/html/hitmiss_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Creating Bounding boxes and circles for contours" type="html">
<file type="source">/samples/html/generalContours_demo1.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Creating Bounding rotated boxes and ellipses for contours" type="html">
<file type="source">/samples/html/generalContours_demo2.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Fit ellipses" type="html">
<file type="source">/samples/html/fitellipse_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Robust Line Fitting" type="html">
<file type="source">/samples/html/fitline_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Image Moments" type="html">
<file type="source">/samples/html/moments_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Gabor Filter demo" type="html">
<file type="source">/samples/html/gabor_filter_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Fractalius-like image effect using Gabor filters" type="html">
<file type="source">/samples/html/gabor_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Line Segment Detector demo" type="html">
<file type="source">/samples/html/lsd_lines_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Hough line detector" type="html">
<file type="source">/samples/html/hough_lines_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Hough circle detector" type="html">
<file type="source">/samples/html/hough_circles_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Generalized Hough transform" type="html">
<file type="source">/samples/html/generalized_hough_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Interactive foreground extraction using GrabCut" type="html">
<file type="source">/samples/html/grabcut_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Image pyramids for image blending" type="html">
<file type="source">/samples/html/pyramids_blending.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Laplacian Pyramid Construction and Merging" type="html">
<file type="source">/samples/html/lap_pyr_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Image Warping" type="html">
<file type="source">/samples/html/warp_perspective_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Interactive Perspective Transformation" type="html">
<file type="source">/samples/html/perspective_transform_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Image Alignment using ECC algorithm" type="html">
<file type="source">/samples/html/image_alignment_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Corner Detection" type="html">
<file type="source">/samples/html/generic_corner_detector_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Refining Corner Locations" type="html">
<file type="source">/samples/html/corner_subpixels_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Template Matching" type="html">
<file type="source">/samples/html/mask_tmpl_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Phase Correlation" type="html">
<file type="source">/samples/html/phase_corr_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Convex Hull" type="html">
<file type="source">/samples/html/convexhull_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Minimum Area Enclosing" type="html">
<file type="source">/samples/html/minarea_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Connected Components" type="html">
<file type="source">/samples/html/connected_components_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Canny Edge Detection" type="html">
<file type="source">/samples/html/edge_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Laplacian Edge Detection" type="html">
<file type="source">/samples/html/laplace_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Create Binary Mask Interactively" type="html">
<file type="source">/samples/html/create_mask_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Create Binary Mask Interactively (IPT)" type="html">
<file type="source">/samples/html/create_mask_ipt_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Interactive Rectangle Selection" type="html">
<file type="source">/samples/html/mouse_and_match_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Distance Transform" type="html">
<file type="source">/samples/html/distrans_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Intensity Image Histogram" type="html">
<file type="source">/samples/html/hist_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Histogram Calculation" type="html">
<file type="source">/samples/html/histogram_calculation_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Histogram Equalization" type="html">
<file type="source">/samples/html/histogram_equalization_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Histogram Comparison" type="html">
<file type="source">/samples/html/histogram_comparison_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="2D Histogram" type="html">
<file type="source">/samples/html/histogram_2d_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Video Histogram" type="html">
<file type="source">/samples/html/color_histogram_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Back Projection" type="html">
<file type="source">/samples/html/backproject_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="CAMShift" type="html">
<file type="source">/samples/html/camshift_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Histogram-based face tracker with CAMShift" type="html">
<file type="source">/samples/html/camshift_track_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="CLAHE (Contrast Limited Adaptive Histogram Equalization)" type="html">
<file type="source">/samples/html/clahe_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Image Remapping" type="html">
<file type="source">/samples/html/remap_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Fun with remap" type="html">
<file type="source">/samples/html/remap_fun_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Image Affine Transformation" type="html">
<file type="source">/samples/html/warp_affine_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Image Pyramids" type="html">
<file type="source">/samples/html/pyramids_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Sobel Derivatives" type="html">
<file type="source">/samples/html/sobel_derivatives_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Laplace Operator" type="html">
<file type="source">/samples/html/laplace_operator_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Point Polygon Test" type="html">
<file type="source">/samples/html/pointPolygonTest_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Points Inside Convex Polygon" type="html">
<file type="source">/samples/html/points_polygon_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Image Segmentation with Distance Transform and Watershed Algorithm" type="html">
<file type="source">/samples/html/watershed_segmentation_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Wiener Deconvolution for Image Deblurring" type="html">
<file type="source">/samples/html/weiner_deconvolution_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Texture flow direction estimation" type="html">
<file type="source">/samples/html/texture_flow_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Coherence-Enhancing Filtering" type="html">
<file type="source">/samples/html/coherence_demo_gui.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Multi-Scale Turing Patterns Generator" type="html">
<file type="source">/samples/html/turing_patterns_demo.html</file>
<file type="main"/>
<file type="thumbnail"/>
</example>
<example name="Hi-Resolution Image Navigation" type="html">
<file type="source">/samples/html/hi_res_browse_demo.html</file>