We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Save affine and ffd transformation to file so we can load them later when needed (e.g. for a fractal task to compute transformed images)
For the affine transformation we can use numpy.save() and numpy.load() see https://numpy.org/doc/stable/reference/generated/numpy.save.html
For the ffd transform we need to use SimpleITK WriteTransform() and ReadTransform() functions, see https://simpleitk.readthedocs.io/en/master/IO.html
The text was updated successfully, but these errors were encountered:
enricotagliavini
nrepina
Successfully merging a pull request may close this issue.
Save affine and ffd transformation to file so we can load them later when needed (e.g. for a fractal task to compute transformed images)
For the affine transformation we can use numpy.save() and numpy.load() see https://numpy.org/doc/stable/reference/generated/numpy.save.html
For the ffd transform we need to use SimpleITK WriteTransform() and ReadTransform() functions, see https://simpleitk.readthedocs.io/en/master/IO.html
The text was updated successfully, but these errors were encountered: