From 2d98c4b1420df4078bcc33efbcadd348965975e5 Mon Sep 17 00:00:00 2001 From: Florian Bruggisser Date: Mon, 22 Apr 2024 18:16:09 +0200 Subject: [PATCH] updated underlaying opencv to 4.9.0 --- README.md | 2 +- build.gradle | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1c834dc..0972f7f 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ See the included examples below for an overview of what's possible and links to **[OpenCV for Processing reference](http://atduskgreg.github.io/opencv-processing/reference/)** -OpenCV for Processing is based on the officially supported [OpenCV Java API](http://docs.opencv.org/java/), currently at version `4.6.0`. In addition to using the wrapped functionality, you can import OpenCV modules and use any of its documented functions: [OpenCV javadocs](http://docs.opencv.org/java/). See the advanced examples (HistogramSkinDetection, DepthFromStereo, and Marker Detection) below for details. (This style of API was inspired by Kyle McDonald's [ofxCv addon](https://github.com/kylemcdonald/ofxCv) for OpenFrameworks.) +OpenCV for Processing is based on the officially supported [OpenCV Java API](http://docs.opencv.org/java/), currently at version `4.9.0`. In addition to using the wrapped functionality, you can import OpenCV modules and use any of its documented functions: [OpenCV javadocs](http://docs.opencv.org/java/). See the advanced examples (HistogramSkinDetection, DepthFromStereo, and Marker Detection) below for details. (This style of API was inspired by Kyle McDonald's [ofxCv addon](https://github.com/kylemcdonald/ofxCv) for OpenFrameworks.) Contributions welcome. diff --git a/build.gradle b/build.gradle index 42d3daf..8ed37be 100644 --- a/build.gradle +++ b/build.gradle @@ -1,12 +1,12 @@ plugins { id 'java-library' - id 'org.bytedeco.gradle-javacpp-platform' version "1.5.7" + id 'org.bytedeco.gradle-javacpp-platform' version "1.5.10" } group 'gab.opencv' -version '0.7.0' +version '0.8.0' -def javaCvVersion = '1.5.8' +def javaCvVersion = '1.5.10' // We can set this on the command line too this way: -PjavacppPlatform=linux-x86_64,macosx-x86_64,windows-x86_64,etc ext { @@ -33,8 +33,8 @@ dependencies { testImplementation group: 'junit', name: 'junit', version: '4.13.1' // opencv - implementation group: 'org.bytedeco', name: 'opencv-platform', version: "4.6.0-$javaCvVersion" - implementation group: 'org.bytedeco', name: 'openblas-platform', version: "0.3.21-$javaCvVersion" + implementation group: 'org.bytedeco', name: 'opencv-platform', version: "4.9.0-$javaCvVersion" + implementation group: 'org.bytedeco', name: 'openblas-platform', version: "0.3.26-$javaCvVersion" // processing implementation fileTree(include: ["core.jar", "jogl-all-main.jar", "gluegen-rt-main.jar"], dir: 'core-libs')