No project description provided
Project description
Interpolation along multidimensional curves.
Installation
git clone https://github.com/neuro-ml/straighten.git
cd straighten
pip install -e .
Usage
Prepare the interpolator
from straighten import Interpolator
curve = ... # a 3d curve
# `step` is the distance along used to take equidistant points
inter = Interpolator(curve, step=1)
Interpolate the image
image = ... # a 3d image containing the curve
straight = inter.interpolate_along(image, shape=(80, 80))
# N - is the number of equidistant points along the curve
print(straight.shape) # (N, 80, 80)
Move additional points from the image to the new coordinates system:
# the shape must be the same as for the straightened image
local = inter.global_to_local(points, shape=(80, 80))
Move points from the new coordinate system back:
original = inter.local_to_global(local, shape=(80, 80))
Making a local basis
In order to change the coordinate system we need a local basis along the curve. Frenet–Serret is a good starting point, however, for certain curves it can give unwanted rotations along the tangential vectors.
If you need a better local basis for your task, you can pass the get_local_basis
argument in Interpolator
's
constructor. E.g. see the implementation of frenet_serret.
For example, in this paper we used the following local basis:
import numpy as np
def get_local_basis(grad, *args):
grad = grad / np.linalg.norm(grad, axis=1, keepdims=True)
# the second basis vector must be in the sagittal plane
sagittal = grad[:, [0, 2]]
second = sagittal[:, ::-1] * [1, -1]
# choose the right orientation of the basis (avoiding rotations)
dets = np.linalg.det(np.stack([sagittal, second], -1))
second = second * dets[:, None]
second = second / np.linalg.norm(second, axis=1, keepdims=True)
second = np.insert(second, 1, np.zeros_like(second[:, 0]), axis=1)
third = np.cross(second, grad)
return np.stack([grad, second, third], -1)
which yields a much more stable local basis for our particular task.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file straighten-0.2.0.tar.gz
.
File metadata
- Download URL: straighten-0.2.0.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 69a4afcbfce9daebe2cb2c54b8a91278d7ac527b88fb40413a542a95c34f664a |
|
MD5 | c1be54b66de1f36bc90398a7839e57ba |
|
BLAKE2b-256 | 7c6be95f2dc556f67b7e3e923ed9cc911d5512c9b35725295415b3981267d9db |