diff --git a/CHANGELOG.md b/CHANGELOG.md index b0c66b12..1284d0cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,31 @@ +0.33.0 +--- +* **bugfix** + * Remove opencv2/aruco.hpp include +* **all** + * build performance tests with all OpenCV builds +* **build** + * build and push Ubuntu 22.04 base image with OpenCV 4.7.0 + * docker images with opencv + * docker production images with opencv 4.7.0 + * Docker push to GHCR +* **core** + * Add ReduceArgMax and ReduceArgMin +* **dnn** + * improved NMSBoxes code +* **docker** + * add dockerfile for Ubuntu 22.04 OpenCV base image + * updates to migrate to GHCR +* **examples** + * Deallocate Mats in feature-matching example. + * Fix G108 (CWE-200) and G114 (CWE-676) + * Fix G304 (CWE-22) and G307 (CWE-703) + * Fix G304 (CWE-22) and G307 (CWE-703) + * Missed #nosec tag +* **make** + * Ubuntu Jammy (22) opencv build support. + + 0.32.0 --- * **all** diff --git a/README.md b/README.md index 7fa84154..1cf5e83f 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.32.0 + gocv version: 0.33.0 opencv lib version: 4.7.0 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.32.0 + gocv version: 0.33.0 opencv lib version: 4.7.0-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.32.0 + gocv version: 0.33.0 opencv lib version: 4.7.0 #### 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.32.0 + gocv version: 0.33.0 opencv lib version: 4.7.0 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.32.0 + gocv version: 0.33.0 opencv lib version: 4.7.0 ### 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.32.0 + gocv version: 0.33.0 opencv lib version: 4.7.0 That's it, now you are ready to use GoCV. diff --git a/version.go b/version.go index dbc8a5af..214c88dc 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.32.0" +const GoCVVersion = "0.33.0" // Version returns the current golang package version func Version() string {