Skip to content

Commit f8a06ac

Browse files
authored
Merge pull request #72 from rainyl/xobjdetect-ximgproc
add xobjdetect and ximgproc modules, add VecPoint3i, Mat.fromRange, refactor MatType, ErrorCode
2 parents d32cba6 + 938effd commit f8a06ac

32 files changed

+4943
-343
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ set(OpenCV_LIBS
1919
opencv_aruco opencv_core opencv_calib3d opencv_dnn opencv_highgui
2020
opencv_features2d opencv_gapi opencv_photo opencv_imgproc
2121
opencv_objdetect opencv_video opencv_videoio opencv_stitching
22-
opencv_img_hash opencv_wechat_qrcode
22+
opencv_img_hash opencv_wechat_qrcode opencv_ximgproc opencv_xobjdetect
2323
)
2424

2525
if(ANDROID)

ffigen.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ headers:
3232
- src/extra/img_hash.h
3333
- src/extra/img_hash_async.h
3434
- src/extra/wechat_qrcode.h
35+
- src/extra/ximgproc.h
36+
- src/extra/ximgproc_async.h
37+
- src/extra/xobjdetect.h
3538
- src/extra/wechat_qrcode_async.h
3639
- src/features2d/features2d.h
3740
- src/features2d/features2d_async.h
@@ -69,6 +72,9 @@ headers:
6972
- src/extra/img_hash.h
7073
- src/extra/img_hash_async.h
7174
- src/extra/wechat_qrcode.h
75+
- src/extra/ximgproc.h
76+
- src/extra/ximgproc_async.h
77+
- src/extra/xobjdetect.h
7278
- src/extra/wechat_qrcode_async.h
7379
- src/features2d/features2d.h
7480
- src/features2d/features2d_async.h

lib/opencv_dart.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ export 'src/contrib/aruco_dict.dart';
1111
export 'src/contrib/img_hash.dart';
1212
export 'src/contrib/wechat_qrcode.dart';
1313
export 'src/contrib/wechat_qrcode_async.dart';
14+
export 'src/contrib/ximgproc.dart';
15+
export 'src/contrib/xobjdetect.dart';
1416

1517
export 'src/core/array.dart';
1618
export 'src/core/asyncarray.dart';

0 commit comments

Comments
 (0)