Skip to content

Commit 7e7a3df

Browse files
committed
2 parents 6b817f2 + db6a03a commit 7e7a3df

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/src/imgproc/imgproc.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ Mat pyrDown(
464464
Mat src, {
465465
Mat? dst,
466466
(int, int) dstsize = (0, 0),
467-
int borderType = BORDER_CONSTANT,
467+
int borderType = BORDER_DEFAULT,
468468
}) {
469469
dst ??= Mat.empty();
470470
using((arena) {
@@ -481,7 +481,7 @@ Mat pyrUp(
481481
Mat src, {
482482
Mat? dst,
483483
(int, int) dstsize = (0, 0),
484-
int borderType = BORDER_CONSTANT,
484+
int borderType = BORDER_DEFAULT,
485485
}) {
486486
dst ??= Mat.empty();
487487
using((arena) {

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: opencv_dart
22
description: "OpenCV4 bindings for Dart language and Flutter, using dart:ffi. The most complete OpenCV bindings for Dart!"
3-
version: 1.0.3+1
3+
version: 1.0.3+2
44
binary_version: 1.0.3
55
homepage: https://github.com/rainyl/opencv_dart
66

0 commit comments

Comments
 (0)