Skip to content

Commit

Permalink
Updates for release 0.30.0
Browse files Browse the repository at this point in the history
Signed-off-by: deadprogram <ron@hybridgroup.com>
  • Loading branch information
deadprogram committed Mar 14, 2022
1 parent 5017d35 commit 17b43c2
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 10 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
0.30.0
---
* **all**
* update to OpenCV 4.5.5
* **build**
* add install_nonfree make task to build all opencv_contrib modules
* correct download location for onnx test file
* Update Makefile for missing version changes
* **core**
* correct how memory is being allocated for Eye(), Zeros(), and Ones() to address issue #930
* **calib3d**
* Adding support for estimateAffine2DWithParams (#924)
* **imgproc**
* Add DrawContoursWithParams function
* **photo**
* Add bindings for fastNlMeansDenoising and fastNlMeansDenoisingColored
* add detailEnhance function
* add EdgePreservingFilter function
* add PencilSketch function
* add stylization function
* **docs**
* add godoc comments for FastNlMeansDenoising functions
* update README with info on latest mingw-w64 t use for Windows builds
* dnn pose detect examples correct the order of the argument variable name
* **examples**
* Fixed memory leaks in the motion detection example
* **openvino**
* Update env.sh and README.md
* **windows**
* use mingw-w64 8.1.0 for protobuf compile
* **contrib**
* add cv::wechat_qrcode::WeChatQRCode (#949)
* Update cgo_static.go

0.29.0
---
* **all**
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
.PHONY: test deps download build clean astyle cmds docker

# GoCV version to use.
GOCV_VERSION?="v0.29.0"
GOCV_VERSION?="v0.30.0"

# OpenCV version to use.
OPENCV_VERSION?=4.5.5
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.29.0
gocv version: 0.30.0
opencv lib version: 4.5.5

That's it, now you are ready to use GoCV.
Expand All @@ -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.29.0
gocv version: 0.30.0
opencv lib version: 4.5.5-openvino
cuda information:
Device 0: "GeForce MX150" 2003Mb, sm_61, Driver/Runtime ver.10.0/10.0
Expand Down Expand Up @@ -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.29.0
gocv version: 0.30.0
opencv lib version: 4.5.5

#### Cleanup extra files
Expand Down Expand Up @@ -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.29.0
gocv version: 0.30.0
opencv lib version: 4.5.5

That's it, now you are ready to use GoCV.
Expand Down Expand Up @@ -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.29.0
gocv version: 0.30.0
opencv lib version: 4.5.5

### Custom Environment
Expand Down Expand Up @@ -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.29.0
gocv version: 0.30.0
opencv lib version: 4.5.5

That's it, now you are ready to use GoCV.
Expand Down
4 changes: 2 additions & 2 deletions openvino/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ Now you can run the version command example to make sure you are compiling/linki

```
$ go run -tags customenv ./cmd/version/main.go
gocv version: 0.29.0
opencv lib version: 4.5.3-openvino
gocv version: 0.30.0
opencv lib version: 4.5.5-openvino
```

Note the use of `-tags customenv` is needed when using `go run`, `go build`, and `go test` with OpenVINO, so the CGo compiler can pickup the correct settings for the environment, and ignore the usual defaults.
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package gocv
import "C"

// GoCVVersion of this package, for display purposes.
const GoCVVersion = "0.29.0"
const GoCVVersion = "0.30.0"

// Version returns the current golang package version
func Version() string {
Expand Down

0 comments on commit 17b43c2

Please sign in to comment.