Skip to content

Commit e2db8f8

Browse files
committed
Updates for 0.35 release
Signed-off-by: deadprogram <ron@hybridgroup.com>
1 parent f3641a8 commit e2db8f8

4 files changed

Lines changed: 23 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
0.35.0
2+
---
3+
* **all**
4+
* Add support for OpenCV 4.8.1
5+
* correct Go formatting
6+
* **features2d**
7+
* Add Match method for BFMatcher
8+
* **build**
9+
* remove extra files from GH actions runner so GPU images builds have enough temp file space to run correctly
10+
* **make**
11+
* for build_raspi added conditional cmake build for 64 and 32bit platforms
12+
* remove ENABLE_VFPV3=ON and add WITH_TBB=ON from 64bit build.
13+
* added sudo_pre_install_clean to raspberry pi and jetson installs
14+
* change sudo_pre_install_clean to support cleanup on 64bit architechtures (arm and x86)
15+
116
0.34.0
217
---
318
* **all**

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
.PHONY: test deps download build clean astyle cmds docker
33

44
# GoCV version to use.
5-
GOCV_VERSION?="v0.34.0"
5+
GOCV_VERSION?="v0.35.0"
66

77
# OpenCV version to use.
88
OPENCV_VERSION?=4.8.1

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ If you need static opencv libraries
152152

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

155-
gocv version: 0.34.0
155+
gocv version: 0.35.0
156156
opencv lib version: 4.8.1
157157

158158
That's it, now you are ready to use GoCV.
@@ -178,7 +178,7 @@ If you need static opencv libraries
178178

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

181-
gocv version: 0.34.0
181+
gocv version: 0.35.0
182182
opencv lib version: 4.8.1-openvino
183183
cuda information:
184184
Device 0: "GeForce MX150" 2003Mb, sm_61, Driver/Runtime ver.10.0/10.0
@@ -240,7 +240,7 @@ Now you should be able to build or run any of the examples:
240240

241241
The version program should output the following:
242242

243-
gocv version: 0.34.0
243+
gocv version: 0.35.0
244244
opencv lib version: 4.8.1
245245

246246
#### Cleanup extra files
@@ -338,7 +338,7 @@ The following make command should do everything to download and install OpenCV 4
338338

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

341-
gocv version: 0.34.0
341+
gocv version: 0.35.0
342342
opencv lib version: 4.8.1
343343

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

378378
The version program should output the following:
379379

380-
gocv version: 0.34.0
380+
gocv version: 0.35.0
381381
opencv lib version: 4.8.1
382382

383383
### Custom Environment
@@ -439,7 +439,7 @@ Now you should be able to build or run any of the command examples:
439439

440440
The version program should output the following:
441441

442-
gocv version: 0.34.0
442+
gocv version: 0.35.0
443443
opencv lib version: 4.8.1
444444

445445
That's it, now you are ready to use GoCV.

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package gocv
77
import "C"
88

99
// GoCVVersion of this package, for display purposes.
10-
const GoCVVersion = "0.34.0"
10+
const GoCVVersion = "0.35.0"
1111

1212
// Version returns the current golang package version
1313
func Version() string {

0 commit comments

Comments
 (0)