summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorAndy Tai <atai@atai.org>2026-01-09 23:57:02 -0800
committerCayetano Santos <csantosb@inventati.org>2026-02-25 09:01:52 +0100
commit984497508a6055ca2af759f31d919b39af140e46 (patch)
tree20d5035be5657424775c09a4351d1686d4143fd6 /gnu/packages
parent40269978c00faaa377c475635620742e3ab43276 (diff)
gnu: opencv: Update to 4.13.0.
* gnu/packages/image-processing.scm (opencv): Update to 4.13.0. [inputs]: Add dlpack. Merges guix/guix!5513 Change-Id: I795a4efb91cdb0ac8bb8bfb09d662e0587396fa4 Signed-off-by: Cayetano Santos <csantosb@inventati.org>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/image-processing.scm12
1 files changed, 7 insertions, 5 deletions
diff --git a/gnu/packages/image-processing.scm b/gnu/packages/image-processing.scm
index 9264df93590..757d559f476 100644
--- a/gnu/packages/image-processing.scm
+++ b/gnu/packages/image-processing.scm
@@ -93,6 +93,7 @@
#:use-module (gnu packages imagemagick)
#:use-module (gnu packages linux)
#:use-module (gnu packages lua)
+ #:use-module (gnu packages machine-learning)
#:use-module (gnu packages maths)
#:use-module (gnu packages mpi)
#:use-module (gnu packages nss)
@@ -591,7 +592,7 @@ different data arrays similar to those available in the numdiff software.")
(define-public opencv
(package
(name "opencv")
- (version "4.12.0")
+ (version "4.13.0")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -620,7 +621,7 @@ different data arrays similar to those available in the numdiff software.")
"zlib-ng")))
(sha256
(base32
- "1n5qif1ispmdby1cmwf9f8isdx07phyhb19jsmgrw5bk3k23dcyy"))))
+ "15w4fqjqv5k1yw70jbjsnlgiky39mqpy05rvmm2fbyjrif4kbgkl"))))
(build-system cmake-build-system)
(arguments
(list
@@ -811,7 +812,7 @@ different data arrays similar to those available in the numdiff software.")
(file-name (git-file-name "opencv_extra" version))
(sha256
(base32
- "0awang2hl7z194rlnic38ry6fgxy8b7k2qqasinjqznxab4dkhvz"))))
+ "0jbph7zg4cczpnly9n2xarwk2l1gxlv3644avjny4rkr32kcggdg"))))
("opencv-contrib"
,(origin
(method git-fetch)
@@ -820,9 +821,10 @@ different data arrays similar to those available in the numdiff software.")
(file-name (git-file-name "opencv_contrib" version))
(sha256
(base32
- "1ai1kanlq1wr3173q86yfj6r9h3kkvjx18cakjr31jkb25qyrmny"))))))
+ "121qkc7g9kwgkv094khxdqqm5bf7ykqplmaadgszcsgxa6ml517i"))))))
(inputs
- (list eigen
+ (list dlpack
+ eigen
ffmpeg-4
;; TODO: add gstreamer
gtk+