Skip to content

Commit

Permalink
add quality module
Browse files Browse the repository at this point in the history
  • Loading branch information
rainyl committed Sep 6, 2024
1 parent e982864 commit 439e9ef
Show file tree
Hide file tree
Showing 13 changed files with 11,049 additions and 3 deletions.
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ set(OpenCV_LIBS
opencv_features2d opencv_gapi opencv_photo opencv_imgproc
opencv_objdetect opencv_video opencv_videoio opencv_stitching
opencv_img_hash opencv_wechat_qrcode opencv_ximgproc opencv_xobjdetect
opencv_quality
)

if(ANDROID)
Expand Down
11 changes: 8 additions & 3 deletions ffigen/ffigen_contrib.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ description: |
output:
bindings: ../lib/src/g/contrib.g.dart
symbol-file:
output: 'package:opencv_dart/src/g/contrib.yaml'
import-path: 'package:opencv_dart/src/g/contrib.g.dart'
output: "package:opencv_dart/src/g/contrib.yaml"
import-path: "package:opencv_dart/src/g/contrib.g.dart"
# ffi-native:
# assetId: 'package:opencv_dart/opencv_dart.dart' # Optional.
import:
symbol-files:
- 'package:opencv_dart/src/g/types.yaml'
- "package:opencv_dart/src/g/types.yaml"
compiler-opts: "-Isrc"
sort: true
include-unused-typedefs: true
Expand All @@ -20,6 +20,8 @@ headers:
- ../src/extra/aruco_async.h
- ../src/extra/img_hash.h
- ../src/extra/img_hash_async.h
- ../src/extra/quality.h
- ../src/extra/quality_async.h
- ../src/extra/wechat_qrcode.h
- ../src/extra/ximgproc.h
- ../src/extra/ximgproc_async.h
Expand All @@ -30,6 +32,8 @@ headers:
- ../src/extra/aruco_async.h
- ../src/extra/img_hash.h
- ../src/extra/img_hash_async.h
- ../src/extra/quality.h
- ../src/extra/quality_async.h
- ../src/extra/wechat_qrcode.h
- ../src/extra/ximgproc.h
- ../src/extra/ximgproc_async.h
Expand All @@ -40,6 +44,7 @@ functions:
symbol-address:
include:
- ".*_Close.*"
- ".*_close.*"

preamble: |
// coverage:ignore-file
Expand Down
1 change: 1 addition & 0 deletions lib/contrib.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export 'src/contrib/aruco.dart';
export 'src/contrib/aruco_async.dart';
export 'src/contrib/aruco_dict.dart';
export 'src/contrib/img_hash.dart';
export 'src/contrib/quality.dart';
export 'src/contrib/wechat_qrcode.dart';
export 'src/contrib/wechat_qrcode_async.dart';
export 'src/contrib/ximgproc.dart';
Expand Down
Loading

0 comments on commit 439e9ef

Please sign in to comment.