Skip to content

Commit 274ac8a

Browse files
committed
Release 0.43.0
Signed-off-by: deadprogram <ron@hybridgroup.com>
1 parent 509fa27 commit 274ac8a

File tree

6 files changed

+27
-12
lines changed

6 files changed

+27
-12
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
0.43.0
2+
---
3+
* **all**
4+
- update to OpenCV 4.13
5+
* **core**
6+
- add Copy method to Mat (#1346)
7+
- improve implementation for NewPointVectorFromPoints
8+
* **cuda**
9+
- add implmentations for more arith functions
10+
* **imgproc**
11+
- added in missing colormaps
12+
- paramters types in improc dilate and erode functions
13+
- use same test values as OpenCV tests for TestMinAreaRect and TestMinAreaRect2f
14+
* **videoio**
15+
- add RetrieveChannel function to make it possible to capture both video and audio
16+
* **examples**
17+
- Fix bugs and memory leaks in yolov8 example (#1349)
18+
* **contrib**
19+
- add support for Macbeth Chart module (MCC) (#1336)
20+
* **install**
21+
- windows: split download and build scripts for easier usage/integration
22+
123
0.42.0
224
---
325
* **all**

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2017-2025 The Hybrid Group and friends
1+
Copyright (c) The Hybrid Group and friends
22

33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.

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.42.0"
5+
GOCV_VERSION?="v0.43.0"
66

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,6 @@ This package was inspired by the original https://github.com/go-opencv/go-opencv
270270

271271
## License
272272

273-
Licensed under the Apache 2.0 license. Copyright (c) 2017-2025 The Hybrid Group.
273+
Licensed under the Apache 2.0 license. Copyright (c) 2017-2026 The Hybrid Group.
274274

275275
Logo generated by GopherizeMe - https://gopherize.me

ROADMAP.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -211,18 +211,11 @@ Your pull requests will be greatly appreciated!
211211
- [ ] [cv::cuda::pow](https://docs.opencv.org/4.x/d8/d34/group__cudaarithm__elem.html#ga82d04ef4bcc4dfa9bfbe76488007c6c4)
212212

213213
- [ ] **matrix reductions - WORK STARTED** The following functions still need implementation:
214-
- [X] [cv::cuda::absSum](https://docs.opencv.org/4.x/d5/de6/group__cudaarithm__reduce.html#ga690fa79ba4426c53f7d2bebf3d37a32a)
215-
- [X] [cv::cuda::calcAbsSum](https://docs.opencv.org/4.x/d5/de6/group__cudaarithm__reduce.html#ga15c403b76ab2c4d7ed0f5edc09891b7e)
216214
- [ ] [cv::cuda::calcSqrSum](https://docs.opencv.org/4.x/d5/de6/group__cudaarithm__reduce.html#gac998c83597f6c206c78cee16aa87946f)
217215
- [ ] [cv::cuda::calcSum](https://docs.opencv.org/4.x/d5/de6/group__cudaarithm__reduce.html#ga98a09144047f09f5cb1d6b6ea8e0856f)
218216
- [ ] [cv::cuda::countNonZero](https://docs.opencv.org/4.x/d5/de6/group__cudaarithm__reduce.html#ga98a09144047f09f5cb1d6b6ea8e0856f)
219-
- [X] [cv::cuda::findMinMax](https://docs.opencv.org/4.x/d5/de6/group__cudaarithm__reduce.html#gae7f5f2aa9f65314470a76fccdff887f2)
220-
- [X] [cv::cuda::findMinMaxLoc](https://docs.opencv.org/4.x/d5/de6/group__cudaarithm__reduce.html#ga93916bc473a62d215d1130fab84d090a)
221217
- [ ] [cv::cuda::integral](https://docs.opencv.org/4.x/d5/de6/group__cudaarithm__reduce.html#ga07e5104eba4bf45212ac9dbc5bf72ba6)
222218
- [ ] [cv::cuda::meanStdDev](https://docs.opencv.org/4.x/d5/de6/group__cudaarithm__reduce.html#ga990a4db4c6d7e8f0f3a6685ba48fbddc)
223-
- [X] [cv::cuda::minMax](https://docs.opencv.org/4.x/d5/de6/group__cudaarithm__reduce.html#ga8d7de68c10717cf25e787e3c20d2dfee)
224-
- [X] [cv::cuda::minMaxLoc](https://docs.opencv.org/4.x/d5/de6/group__cudaarithm__reduce.html#ga5cacbc2a2323c4eaa81e7390c5d9f530)
225-
- [X] [cv::cuda::normalize](https://docs.opencv.org/4.x/d5/de6/group__cudaarithm__reduce.html#ga4da4738b9956a5baaa2f5f8c2fba438a)
226219
- [ ] [cv::cuda::rectStdDev](https://docs.opencv.org/4.x/d5/de6/group__cudaarithm__reduce.html#gac311484a4e57cab2ce2cfdc195fda7ee)
227220
- [ ] [cv::cuda::reduce](https://docs.opencv.org/4.x/d5/de6/group__cudaarithm__reduce.html#ga21d57f661db7be093caf2c4378be2007)
228221
- [ ] [cv::cuda::sqrIntegral](https://docs.opencv.org/4.x/d5/de6/group__cudaarithm__reduce.html#ga40c75196202706399a60bf6ba7a052ac)
@@ -312,7 +305,7 @@ Your pull requests will be greatly appreciated!
312305
- [X] **img_hash. The module brings implementations of different image hashing algorithms.**
313306
- [ ] intensity_transform. The module brings implementations of intensity transformation algorithms to adjust image contrast.
314307
- [ ] line_descriptor. Binary descriptors for lines extracted from an image
315-
- [x] mcc. Macbeth Chart module
308+
- [X] **mcc. Macbeth Chart module**
316309
- [ ] optflow. Optical Flow Algorithms
317310
- [ ] ovis. OGRE 3D Visualiser
318311
- [ ] phase_unwrapping. Phase Unwrapping API

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.42.0"
10+
const GoCVVersion = "0.43.0"
1111

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

0 commit comments

Comments
 (0)