opencv_dart icon indicating copy to clipboard operation
opencv_dart copied to clipboard

OpenCV bindings for Dart language and Flutter.

Results 31 opencv_dart issues
Sort by recently updated
recently updated
newest added

VideoWriter.fromFile seems not working? following code: ` Future processVideo(String filePath,String destFolder) async{ cv.VideoCapture cap = cv.VideoCapture.fromFile(filePath); double width = cap.get(cv.CAP_PROP_FRAME_WIDTH); double height = cap.get(cv.CAP_PROP_FRAME_HEIGHT); double fps = cap.get(cv.CAP_PROP_FPS); String newFilePath...

bug