Skip to content

Commit

Permalink
Merge pull request #51 from rainyl/pyrDownUp-borderType
Browse files Browse the repository at this point in the history
Fix: Pyr down up border type
  • Loading branch information
rainyl authored May 14, 2024
2 parents 8813680 + a3054fb commit db6a03a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/src/imgproc/imgproc.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit db6a03a

Please sign in to comment.