rainyl / opencv_dart

OpenCV bindings for Dart language and Flutter. Support Asynchronous Now!
https://pub.dev/packages/opencv_dart
Apache License 2.0
112 stars 14 forks source link

use dart_api #149

Closed rainyl closed 2 months ago

rainyl commented 2 months ago

Currently many native classes were wrapped with void *, which is not efficient for some classes, with dart_api we can create dart objects from native side directly, which can improve performance significantly, e.g., VecVecPoint -> List<List<Point>>

rainyl commented 2 months ago

Unnecessary, closed.