Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Pyr down up border type #51

Merged
merged 2 commits into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading