diff --git a/lib/src/imgproc/imgproc.dart b/lib/src/imgproc/imgproc.dart index 4f19771c..026eedbf 100644 --- a/lib/src/imgproc/imgproc.dart +++ b/lib/src/imgproc/imgproc.dart @@ -464,7 +464,7 @@ Mat pyrDown( Mat src, { Mat? dst, (int, int) dstsize = (0, 0), - int borderType = BORDER_CONSTANT, + int borderType = BORDER_DEFAULT, }) { dst ??= Mat.empty(); using((arena) { @@ -481,7 +481,7 @@ Mat pyrUp( Mat src, { Mat? dst, (int, int) dstsize = (0, 0), - int borderType = BORDER_CONSTANT, + int borderType = BORDER_DEFAULT, }) { dst ??= Mat.empty(); using((arena) { diff --git a/pubspec.yaml b/pubspec.yaml index c2c94c58..a185447d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: opencv_dart description: "OpenCV4 bindings for Dart language and Flutter, using dart:ffi. The most complete OpenCV bindings for Dart!" -version: 1.0.3+1 +version: 1.0.3+2 binary_version: 1.0.3 homepage: https://github.com/rainyl/opencv_dart