Skip to content

Commit

Permalink
updated underlaying opencv to 4.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cansik committed Apr 22, 2024
1 parent 7f21c3e commit 2d98c4b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -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 {
Expand All @@ -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')
Expand Down

0 comments on commit 2d98c4b

Please sign in to comment.