Skip to content

Commit

Permalink
release: preparing for v0.12.0
Browse files Browse the repository at this point in the history
Signed-off-by: Ron Evans <[email protected]>
  • Loading branch information
deadprogram committed May 24, 2018
1 parent a03e907 commit e15f509
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 4 deletions.
40 changes: 40 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,43 @@
0.12.0
---
* **build**
* convert to CRLF
* Enable verbosity for travisCI
* Further improvements to Makefile
* **core**
* Add Rotate, VConcat
* Adding InScalarRange and NewMatFromScalarWithSize functions
* Changed NewMatFromScalarWithSize to NewMatWithSizeFromScalar
* implement CheckRange(), Determinant(), EigenNonSymmetric(), Min(), and MinMaxIdx() functions
* implement PerspectiveTransform() and Sqrt() functions
* implement Transform() and Transpose() functions
* Make toByteArray safe for empty byte slices
* Renamed InScalarRange to InRangeWithScalar
* **docs**
* nicer error if we can't read haarcascade_frontalface_default
* correct some ROADMAP links
* Fix example command.
* Fix executable name in help text.
* update ROADMAP from recent contributions
* **imgproc**
* add BoxFilter and SqBoxFilter functions
* Fix the hack to convert C arrays to Go slices.
* **videoio**
* Add isColor to VideoWriterFile
* Check numerical parameters for gocv.VideoWriterFile
* CodecString()
* **features2d**
* add BFMatcher
* **img_hash**
* Add contrib/img_hash module
* add GoDocs for new img_hash module
* Add img-similarity as an example for img_hash
* **openvino**
* adds support for Intel OpenVINO toolkit PVL
* starting experimental work on OpenVINO IE
* update README files for Intel OpenVINO toolkit support
* WIP on IE can load an IR network

0.11.0
---
* **build**
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ Now you should be able to build or run any of the examples:

The version program should output the following:

gocv version: 0.11.0
gocv version: 0.12.0
opencv lib version: 3.4.1

You might want to copy the `env.sh` script into your own projects, to make it easier to setup these environment vars when building your own code.
Expand Down Expand Up @@ -246,7 +246,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.11.0
gocv version: 0.12.0
opencv lib version: 3.4.1

You might want to copy the `env.sh` script into your own projects, to make it easier to setup the needed environment vars when building your own code.
Expand Down Expand Up @@ -333,7 +333,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.11.0
gocv version: 0.12.0
opencv lib version: 3.4.1

You might want to copy the `env.cmd` script into your own projects, to make it easier to setup the needed environment vars when building your own code.
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.11.0"
const GoCVVersion = "0.12.0"

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

0 comments on commit e15f509

Please sign in to comment.