[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
37/53: gnu: Add python-spatial-image.
From: |
guix-commits |
Subject: |
37/53: gnu: Add python-spatial-image. |
Date: |
Sun, 21 Apr 2024 07:49:12 -0400 (EDT) |
rekado pushed a commit to branch wip-pandas-upgrade
in repository guix.
commit b0a9b4bcd440d4f19669a84ea9fee3159cf1a63c
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Fri Apr 19 13:41:32 2024 +0200
gnu: Add python-spatial-image.
* gnu/packages/image-processing.scm (python-spatial-image): New variable.
Change-Id: I0e2bbfb94499aca71b33703153ad408530b60658
---
gnu/packages/image-processing.scm | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/image-processing.scm
b/gnu/packages/image-processing.scm
index 6c199792f8..00b6311c23 100644
--- a/gnu/packages/image-processing.scm
+++ b/gnu/packages/image-processing.scm
@@ -50,6 +50,7 @@
#:use-module (guix build-system cmake)
#:use-module (guix build-system gnu)
#:use-module (guix build-system python)
+ #:use-module (guix build-system pyproject)
#:use-module (gnu packages)
#:use-module (gnu packages algebra)
#:use-module (gnu packages base)
@@ -90,6 +91,7 @@
#:use-module (gnu packages pretty-print)
#:use-module (gnu packages protobuf)
#:use-module (gnu packages python)
+ #:use-module (gnu packages python-build)
#:use-module (gnu packages python-check)
#:use-module (gnu packages python-science)
#:use-module (gnu packages python-xyz)
@@ -1702,6 +1704,43 @@ purposes.")
segmentation.")
(license license:expat)))
+(define-public python-spatial-image
+ (package
+ (name "python-spatial-image")
+ (version "1.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "spatial_image" version))
+ (sha256
+ (base32 "0blyjwgv6bqpg7r3f4dcs7x27ysfm8n9y0zk5j7dxj74lma3wdsm"))))
+ (build-system pyproject-build-system)
+ (propagated-inputs (list python-numpy python-pytest python-pytest-mypy
+ python-xarray python-xarray-dataclasses))
+ (native-inputs (list python-flit-core python-pytest))
+ (home-page "https://github.com/spatial-image/spatial-image")
+ (synopsis "Multi-dimensional spatial image data structure")
+ (description "This package implements a multi-dimensional spatial image
+data structure for scientific Python.
+
+To facilitate:
+
+@itemize
+@item Multi-scale processing and analysis
+@item Registration
+@item Resampling
+@item Subregion parallel processing
+@item Coupling with meshes, point sets, and annotations
+@end itemize
+
+with scientific images, which are typically multi-dimensional with anisotropic
+sampling, this package provides a spatial-image data structure. In addition
+to an N-dimensional array of pixel values, spatial metadata defines the
+location of the pixel sampling grid in space time. It also labels the array
+dimensions. This metadata is easily utilized and carried through image
+processing pipelines.")
+ (license license:expat)))
+
(define-public labelme
(package
(name "labelme")
- 47/53: gnu: Add python-pandas-2., (continued)
- 47/53: gnu: Add python-pandas-2., guix-commits, 2024/04/21
- 49/53: gnu: cpplint: Use pyproject-build-system., guix-commits, 2024/04/21
- 52/53: gnu: python-asdf-astropy: Add missing test inputs., guix-commits, 2024/04/21
- 06/53: gnu: r-renv: Update to 1.0.7., guix-commits, 2024/04/21
- 12/53: gnu: r-ggfortify: Update to 0.4.17., guix-commits, 2024/04/21
- 09/53: gnu: r-ggeffects: Update to 1.5.2., guix-commits, 2024/04/21
- 18/53: gnu: r-mlr3misc: Update to 0.15.0., guix-commits, 2024/04/21
- 20/53: gnu: r-tensorflow: Update to 2.16.0., guix-commits, 2024/04/21
- 34/53: gnu: Add python-slicerator., guix-commits, 2024/04/21
- 28/53: gnu: r-alevinqc: Update to 1.18.1., guix-commits, 2024/04/21
- 37/53: gnu: Add python-spatial-image.,
guix-commits <=
- 35/53: gnu: Add python-xarray-dataclasses., guix-commits, 2024/04/21
- 33/53: gnu: python-nbclient: Update to 0.6.6., guix-commits, 2024/04/21
- 43/53: gnu: python-pytest-xdist: Use pyproject-build-system., guix-commits, 2024/04/21
- 45/53: gnu: python-contourpy: Update to 1.1.1., guix-commits, 2024/04/21
- 42/53: gnu: python-jinja2: Update to 3.1.2., guix-commits, 2024/04/21
- 53/53: gnu: python-pydantic-2: Ignore sensitive tests., guix-commits, 2024/04/21
- 51/53: gnu: python-zarr: Update to 2.17.2., guix-commits, 2024/04/21
- 48/53: gnu: python-pandas-2: Skip expensive tests., guix-commits, 2024/04/21
- 50/53: gnu: python-xarray-dataclasses: Add missing test input., guix-commits, 2024/04/21