opencv_ffi 1.0.2 copy "opencv_ffi: ^1.0.2" to clipboard
opencv_ffi: ^1.0.2 copied to clipboard

discontinuedreplaced by: opencv_dart

An FFI implementation of the C++ OpenCV library in Dart, with video I/O, image encodings and processing, and some GUI elements.

example/example.dart

import "dart:io";
import "package:opencv_ffi/opencv_ffi.dart";

void main() async {
  final camera =
      Platform.isWindows ? Camera.fromIndex(0) : Camera.fromName("/dev/video0");
  try {
    while (true) {
      camera.showFrame();
    }
  } finally {
    camera.dispose();
  }
}
18
likes
0
pub points
66%
popularity

Publisher

unverified uploader

An FFI implementation of the C++ OpenCV library in Dart, with video I/O, image encodings and processing, and some GUI elements.

Repository (GitHub)
View/report issues

Topics

#ffi #opencv #video #image #camera

License

unknown (license)

Dependencies

ffi

More

Packages that depend on opencv_ffi