Compute one dimensional CPAB transformations in Numpy and Pytorch
Project description
Finite-dimensional spaces of simple, fast, and highly-expressive diffeomorphisms derived from parametric, continuously-defined, velocity fields in Numpy and Pytorch. DIFW supports one-dimensional diffeomorphic transformations.
This repo is based on the libcpab library that supports diffeomorphic transformations in 1D (time series), 2D (images) and 3D (volumetric images). Thanks to Nicki Skafte Detlefsen, Oren Freifeld and Ron Shapira Weber for their help and guidance.
Getting Started
The following code transforms a regular grid using a diffeomorphic curve parametrized theta:
# Import difw library
import difw
# Transformation instance
T = difw.Cpab(tess_size=5, backend="numpy", device="cpu", zero_boundary=True, basis="qr")
# Generate grid
grid = T.uniform_meshgrid(100)
# Transformation parameters
theta = T.identity(epsilon=1)
# Transform grid
grid_t = T.transform_grid(grid, theta)
In this example, the tesselation is composed of 5 intervals, and the zero_boundary condition set to True constraints the velocity at the tesselation boundary (in this case, at x=0 and x=1). The regular grid has 100 equally spaced points.
T.visualize_tesselation()
The velocity field is formed by a continuous piecewise affine function defined over 5 intervals. The parameters theta represent a basis of the null space for all continuous piecewise affine functions composed of 5 intervals. In this case, we have used the QR decomposition to build the basis. See the API documentation for more details about the transformation options.
Taking into account the zero velocity constraints at the boundary, only 4 dimensions or degree of freedom are left to play with, and that indeed is the dimensionality of theta, a vector of 4 values.
T.visualize_velocity(theta)
We can visualize the generated transformation based on the parameters theta:
T.visualize_deformgrid(theta)
In addition, for optimization tasks, it is useful to obtain the gradient of the transformation with respect to parameters theta. The gradient function can be obtained in closed-form solution. There are 4 different functions, one per dimension in theta:
T.visualize_gradient(theta)
Citations
This repository was presented at the International Conference of Machine Learning (ICML 2022).
@inproceedings{martinez2022closed,
title={Closed-Form Diffeomorphic Transformations for Time Series Alignment},
author={Martinez, I{\~n}igo and Viles, Elisabeth and Olaizola, Igor G},
booktitle={International Conference on Machine Learning},
pages={15122--15158},
year={2022},
organization={PMLR}
}
Furthermore, please cite previous articles by Freifeld et al. and Shapira Weber et al. that are essential to this work.
@article{freifeld2017transformations,
title={Transformations based on continuous piecewise-affine velocity fields},
author={Freifeld, Oren and Hauberg, S{\o}ren and Batmanghelich, Kayhan and Fisher, Jonn W},
journal={IEEE transactions on pattern analysis and machine intelligence},
volume={39},
number={12},
pages={2496--2509},
year={2017},
publisher={IEEE}
}
@inproceedings{freifeld2015highly,
title={Highly-expressive spaces of well-behaved transformations: Keeping it simple},
author={Freifeld, Oren and Hauberg, Soren and Batmanghelich, Kayhan and Fisher, John W},
booktitle={Proceedings of the IEEE International Conference on Computer Vision},
pages={2911--2919},
year={2015}
}
@article{shapira2019diffeomorphic,
title={Diffeomorphic temporal alignment nets},
author={Shapira Weber, Ron A and Eyal, Matan and Skafte, Nicki and Shriki, Oren and Freifeld, Oren},
journal={Advances in Neural Information Processing Systems},
volume={32},
year={2019}
}
Installation
As the compiled difw package is hosted on the Python Package Index (PyPI) you can easily install it with pip. To install difw, run this command in your terminal of choice:
$ pip install difw
or, alternatively:
$ python -m pip install difw
If you want to get difw’s latest version, you can refer to the repository hosted at github:
python -m pip install https://github.com/imartinezl/difw/archive/master.zip
Environment Setup
Requirements
difw builds on numpy, torch, scipy, ninja, and matplotlib libraries.
Python 3
To find out which version of python you have, open a terminal window and try the following command:
$ python3 --version
Python 3.6.9
If you have python3 on your machine, then this command should respond with a version number. If you do not have python3 installed, follow these instructions.
Pip
pip is the reference Python package manager. It’s used to install and update packages. In case pip is not installed in your OS, follow these procedure.
Virtual Environment
venv creates a “virtual” isolated Python installation and installs packages into that virtual installation. It is always recommended to use a virtual environment while developing Python applications. To create a virtual environment, go to your project’s directory and run venv.
$ python3 -m venv env
Before you can start installing or using packages in your virtual environment you’ll need to activate it.
$ source env/bin/activate
Source Code
difw is developed on GitHub, where the code is always available.
You can either clone the public repository:
$ git clone git://github.com/imartinezl/difw.git
Or, download the tarball:
$ curl -OL https://github.com/imartinezl/difw/tarball/main
# optionally, zipball is also available (for Windows users).
Once you have a copy of the source, you can embed it in your own Python package, or install it into your site-packages easily:
$ cd difw
$ python -m pip install .
MIT License
Copyright (c) 2021 Iñigo Martínez
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file difw-0.0.31.tar.gz
.
File metadata
- Download URL: difw-0.0.31.tar.gz
- Upload date:
- Size: 41.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 939c57ab652c7c5f8eadc5acb17ba2cf0ab30f283a6a34e61db12019efce6e03 |
|
MD5 | 5b230af2b444288ede4c490f4bddb879 |
|
BLAKE2b-256 | 83d07dd10fc992c70669d00a05eaf3d13a5c32202bf448a619c507bdae28215f |
File details
Details for the file difw-0.0.31-py3-none-any.whl
.
File metadata
- Download URL: difw-0.0.31-py3-none-any.whl
- Upload date:
- Size: 38.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d469d967e1d775950445efab182e905b8f9c077265eaa4ac7830b57143c5f41 |
|
MD5 | c7e5aa3deb0a9c4c34c851e5ec338a8e |
|
BLAKE2b-256 | 175051364869262a046fd90713040c26962a35331410766540568cb1c1c70aac |