dartcv4 2.1.0
dartcv4: ^2.1.0 copied to clipboard
OpenCV4 bindings for Dart language and Flutter, using dart:ffi. The most complete OpenCV bindings for Dart!
example/main.dart
import 'package:dartcv4/dartcv.dart' as cv;
void main() {
final image = cv.Mat.zeros(3, 3, cv.MatType.CV_8UC3);
cv.randu(image, cv.Scalar.all(0.0), cv.Scalar(255.0));
print(image);
}