From e2db8f81cfce48d9b2c2d4ce92219a7a4a021bfe Mon Sep 17 00:00:00 2001 From: deadprogram Date: Thu, 12 Oct 2023 08:39:53 +0200 Subject: [PATCH] Updates for 0.35 release Signed-off-by: deadprogram --- CHANGELOG.md | 15 +++++++++++++++ Makefile | 2 +- README.md | 12 ++++++------ version.go | 2 +- 4 files changed, 23 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7065f225..98577fb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +0.35.0 +--- +* **all** + * Add support for OpenCV 4.8.1 + * correct Go formatting +* **features2d** + * Add Match method for BFMatcher +* **build** + * remove extra files from GH actions runner so GPU images builds have enough temp file space to run correctly +* **make** + * for build_raspi added conditional cmake build for 64 and 32bit platforms + * remove ENABLE_VFPV3=ON and add WITH_TBB=ON from 64bit build. + * added sudo_pre_install_clean to raspberry pi and jetson installs + * change sudo_pre_install_clean to support cleanup on 64bit architechtures (arm and x86) + 0.34.0 --- * **all** diff --git a/Makefile b/Makefile index 4f3f5aeb..e2b759e5 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ .PHONY: test deps download build clean astyle cmds docker # GoCV version to use. -GOCV_VERSION?="v0.34.0" +GOCV_VERSION?="v0.35.0" # OpenCV version to use. OPENCV_VERSION?=4.8.1 diff --git a/README.md b/README.md index 7d469e68..55afbccb 100644 --- a/README.md +++ b/README.md @@ -152,7 +152,7 @@ If you need static opencv libraries If it works correctly, at the end of the entire process, the following message should be displayed: - gocv version: 0.34.0 + gocv version: 0.35.0 opencv lib version: 4.8.1 That's it, now you are ready to use GoCV. @@ -178,7 +178,7 @@ If you need static opencv libraries If it works correctly, at the end of the entire process, the following message should be displayed: - gocv version: 0.34.0 + gocv version: 0.35.0 opencv lib version: 4.8.1-openvino cuda information: Device 0: "GeForce MX150" 2003Mb, sm_61, Driver/Runtime ver.10.0/10.0 @@ -240,7 +240,7 @@ Now you should be able to build or run any of the examples: The version program should output the following: - gocv version: 0.34.0 + gocv version: 0.35.0 opencv lib version: 4.8.1 #### Cleanup extra files @@ -338,7 +338,7 @@ The following make command should do everything to download and install OpenCV 4 If it works correctly, at the end of the entire process, the following message should be displayed: - gocv version: 0.34.0 + gocv version: 0.35.0 opencv lib version: 4.8.1 That's it, now you are ready to use GoCV. @@ -377,7 +377,7 @@ Now you should be able to build or run any of the examples: The version program should output the following: - gocv version: 0.34.0 + gocv version: 0.35.0 opencv lib version: 4.8.1 ### Custom Environment @@ -439,7 +439,7 @@ Now you should be able to build or run any of the command examples: The version program should output the following: - gocv version: 0.34.0 + gocv version: 0.35.0 opencv lib version: 4.8.1 That's it, now you are ready to use GoCV. diff --git a/version.go b/version.go index 85eaab07..ba2bde68 100644 --- a/version.go +++ b/version.go @@ -7,7 +7,7 @@ package gocv import "C" // GoCVVersion of this package, for display purposes. -const GoCVVersion = "0.34.0" +const GoCVVersion = "0.35.0" // Version returns the current golang package version func Version() string {