From e2652a2518b26f523e84a3f8c938e93ed2475c91 Mon Sep 17 00:00:00 2001 From: deadprogram Date: Wed, 8 Nov 2017 21:35:24 +0100 Subject: [PATCH] Prepare for release v0.4.1 Signed-off-by: deadprogram --- CHANGELOG.md | 32 ++++++++++++++++++++++++++++++++ version.go | 2 +- 2 files changed, 33 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 41226766..80cacd96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,35 @@ +0.4.0 +--- +* **core** + * Added cv::mean binding with single argument + * fix the write-strings warning + * return temp pointer fix +* **examples** + * add counter example + * add motion-detect command + * correct counter + * remove redundant cast and other small cleanup + * set motion detect example to fullscreen + * use MOG2 for continous motion detection, instead of simplistic first frame only +* **highgui** + * ability to better control the fullscreen window +* **imgproc** + * add BorderType param type for GaussianBlur + * add BoundingRect() function + * add ContourArea() function + * add FindContours() function along with associated data types + * add Laplacian and Scharr functions + * add Moments() function + * add Threshold function +* **pvl** + * add needed lib for linker missing in README +* **test** + * slightly more permissive version test +* **videoio** + * Add image compression flags for gocv.IMWrite + * Fixed possible looping out of compression parameters length + * Make dedicated function to run cv::imwrite with compression parameters + 0.3.1 --- * **overall** diff --git a/version.go b/version.go index 8f5f838d..44341f3f 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.3.1" +const GoCVVersion = "0.4.0" // Version returns the current golang package version func Version() string {