- put PixelType trait in lib

- use AsArray to make functions more flexible
- less image copying when doing re
This commit is contained in:
Wim Pomp
2025-03-06 22:49:49 +01:00
parent 934f038ea1
commit 0c6a38e4fa
4 changed files with 205 additions and 148 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "sitk-registration-sys"
version = "2025.3.1"
version = "2025.3.2"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "register and interpolate images"
@@ -14,11 +14,11 @@ keywords = ["registration", "affine", "bspline", "transform"]
categories = ["multimedia::images", "science"]
[lib]
name = "sitk_regsitration_sys"
name = "sitk_registration_sys"
crate-type = ["cdylib", "rlib"]
[dependencies]
anyhow = "1.0.96"
anyhow = "1.0.97"
libc = "0.2.170"
ndarray = "0.16.1"
num = "0.4.3"
@@ -28,4 +28,7 @@ serde_yaml = "0.9.33"
[build-dependencies]
cmake = "0.1.54"
git2 = "0.20.0"
git2 = "0.20.0"
[dev-dependencies]
tempfile = "3.18.0"