Skip to content

Commit

Permalink
release: updates for v0.27.0 release
Browse files Browse the repository at this point in the history
Signed-off-by: deadprogram <[email protected]>
  • Loading branch information
deadprogram committed Apr 8, 2021
1 parent 042e4c7 commit 9d52420
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 7 deletions.
40 changes: 40 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,43 @@
0.27.0
---
* **all**
* update to OpenCV 4.5.2
* **core**
* add Append() to PointsVector/PointVector
* add cv::RNG
* add implementation for Point2fVector
* add rand functions
* add test coverage for PointsVector
* create new PointsVector/PointVector wrappers to avoid repetitive memory copying for seeming innocent operations involving slices of image.Point
* test coverage for Point2f
* use PointVector for everything that we can to speed up pipeline when passing around Point vectors
* use enum instead of int for Invert Method
* **cuda**
* adding HoughLinesDetector and HoughSegmentDetector
* adding tests for the CannyEdgeDetector
* some refactoring of the API
* adding dockerfiles for OpenCV 4.5.2 with CUDA 11.2
* add GaussianFilter
* correct signature and test for Threshold
* implement SobelFilter
* move arithm module functions into correct location
* rename files to get rid of so many cudas
* add abs function implementation
* **dnn**
* increase test coverage
* **docker**
* make all Dockerfiles names/tags more consistent
* **docs**
* add CUDA functions that need implementation to ROADMAP
* remove invalid sections and add some missing functions from ROADMAP
* **imgproc**
* Add FindContoursWithParams function
* Add ToImageYUV and ToImageYUVWithParams
* **make**
* add make task to show changelog for next release
* **wechat_qrcode**
* disable module in Windows due to linker error

0.26.0
---
* **all**
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,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.26.0
gocv version: 0.27.0
opencv lib version: 4.5.2

That's it, now you are ready to use GoCV.
Expand All @@ -176,7 +176,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.26.0
gocv version: 0.27.0
opencv lib version: 4.5.2-openvino
cuda information:
Device 0: "GeForce MX150" 2003Mb, sm_61, Driver/Runtime ver.10.0/10.0
Expand Down Expand Up @@ -231,7 +231,7 @@ Now you should be able to build or run any of the examples:

The version program should output the following:

gocv version: 0.26.0
gocv version: 0.27.0
opencv lib version: 4.5.2

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

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

gocv version: 0.26.0
gocv version: 0.27.0
opencv lib version: 4.5.2

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

The version program should output the following:

gocv version: 0.26.0
gocv version: 0.27.0
opencv lib version: 4.5.2

### Cache builds
Expand Down Expand Up @@ -435,7 +435,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.26.0
gocv version: 0.27.0
opencv lib version: 4.5.2

That's it, now you are ready to use GoCV.
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.26.0"
const GoCVVersion = "0.27.0"

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

0 comments on commit 9d52420

Please sign in to comment.