Skip to content

Commit

Permalink
Prepare for release v0.16.0
Browse files Browse the repository at this point in the history
Signed-off-by: Ron Evans <[email protected]>
  • Loading branch information
deadprogram committed Aug 27, 2018
1 parent 2a7e91b commit 116580a
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 7 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
0.16.0
---
* **build**
* add make task for Raspbian install with ARM hardware optimizations
* use all available cores to compile OpenCV on Windows as discussed in issue #275
* download performance improvements for OpenCV installs on Windows
* correct various errors and issues with OpenCV installs on Fedora and CentOS
* **core**
* correct spelling error in constant to fix issue #269
* implemented & added test for Mat.SetTo
* improve Multiply() GoDoc and test showing Scalar() multiplication
* mutator functions for Mat add, subtract, multiply, and divide for uint8 and float32 values.
* **dnn**
* add FP16BlobFromImage() function to convert an image Mat to a half-float aka FP16 slice of bytes
* **docs**
* fix a varible error in example code in README

0.15.0
---
* **build**
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ The following commands should do everything to download and install OpenCV 3.4.2

If it works correctly, at the end of the entire process, the following message should be displayed:

gocv version: 0.15.0
gocv version: 0.16.0
opencv lib version: 3.4.2

That's it, now you are ready to use GoCV.
Expand Down Expand Up @@ -195,7 +195,7 @@ Now you should be able to build or run any of the examples:

The version program should output the following:

gocv version: 0.15.0
gocv version: 0.16.0
opencv lib version: 3.4.2

#### Cleanup extra files
Expand Down Expand Up @@ -242,7 +242,7 @@ The following commands should do everything to download and install OpenCV 3.4.2

If it works correctly, at the end of the entire process, the following message should be displayed:

gocv version: 0.15.0
gocv version: 0.16.0
opencv lib version: 3.4.2

That's it, now you are ready to use GoCV.
Expand Down Expand Up @@ -273,7 +273,7 @@ Now you should be able to build or run any of the examples:

The version program should output the following:

gocv version: 0.15.0
gocv version: 0.16.0
opencv lib version: 3.4.2

### Cache builds
Expand Down Expand Up @@ -341,7 +341,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.15.0
gocv version: 0.16.0
opencv lib version: 3.4.2

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

```
$ go run -tags openvino ./cmd/version/main.go
gocv version: 0.15.0
gocv version: 0.16.0
opencv lib version: 3.4.2-openvino_2018_R2.0.0
```

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.15.0"
const GoCVVersion = "0.16.0"

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

0 comments on commit 116580a

Please sign in to comment.