Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add xobjdetect and ximgproc modules #72

Merged
merged 18 commits into from
Jul 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ set(OpenCV_LIBS
opencv_aruco opencv_core opencv_calib3d opencv_dnn opencv_highgui
opencv_features2d opencv_gapi opencv_photo opencv_imgproc
opencv_objdetect opencv_video opencv_videoio opencv_stitching
opencv_img_hash opencv_wechat_qrcode
opencv_img_hash opencv_wechat_qrcode opencv_ximgproc opencv_xobjdetect
)

if(ANDROID)
Expand Down
6 changes: 6 additions & 0 deletions ffigen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ headers:
- src/extra/img_hash.h
- src/extra/img_hash_async.h
- src/extra/wechat_qrcode.h
- src/extra/ximgproc.h
- src/extra/ximgproc_async.h
- src/extra/xobjdetect.h
- src/extra/wechat_qrcode_async.h
- src/features2d/features2d.h
- src/features2d/features2d_async.h
Expand Down Expand Up @@ -69,6 +72,9 @@ headers:
- src/extra/img_hash.h
- src/extra/img_hash_async.h
- src/extra/wechat_qrcode.h
- src/extra/ximgproc.h
- src/extra/ximgproc_async.h
- src/extra/xobjdetect.h
- src/extra/wechat_qrcode_async.h
- src/features2d/features2d.h
- src/features2d/features2d_async.h
Expand Down
2 changes: 2 additions & 0 deletions lib/opencv_dart.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ export 'src/contrib/aruco_dict.dart';
export 'src/contrib/img_hash.dart';
export 'src/contrib/wechat_qrcode.dart';
export 'src/contrib/wechat_qrcode_async.dart';
export 'src/contrib/ximgproc.dart';
export 'src/contrib/xobjdetect.dart';

export 'src/core/array.dart';
export 'src/core/asyncarray.dart';
Expand Down
Loading
Loading