Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add option to pass (N, M, ...) coordinate array to skimage.transform.warp #1141

Closed
ahojnnes opened this issue Sep 10, 2014 · 1 comment
Closed
Assignees
Labels
⏩ type: Enhancement Improve existing features

Comments

@ahojnnes
Copy link
Member

No description provided.

@rfezzani
Copy link
Member

from skimage.transform import warp
import numpy as np
img = np.random.randn(256, 256, 256)
I, J, K = np.meshgrid(np.arange(256), np.arange(256), np.arange(256))
img = warp(img, np.array([I, J, K]))

This works perfectly well. So I assupme that I can close this one ;-)

Registration and warping automation moved this from In progress to Done Feb 14, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
⏩ type: Enhancement Improve existing features
Projects
Development

No branches or pull requests

3 participants