elasticdeform


Nameelasticdeform JSON
Version 0.5.1 PyPI version JSON
download
home_pagehttps://github.com/gvtulder/elasticdeform
SummaryElastic deformations for N-D images.
upload_time2024-05-23 20:43:53
maintainerNone
docs_urlNone
authorGijs van Tulder
requires_pythonNone
licenseBSD
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Elastic deformations for N-dimensional images (Python, SciPy, NumPy, TensorFlow, PyTorch)
=========================================================================================

[![Documentation Status](https://readthedocs.org/projects/elasticdeform/badge/?version=latest)](https://elasticdeform.readthedocs.io/en/latest/?badge=latest)
[![Test](https://github.com/gvtulder/elasticdeform/actions/workflows/test.yml/badge.svg)](https://github.com/gvtulder/elasticdeform/actions/workflows/test.yml)
[![Build](https://github.com/gvtulder/elasticdeform/actions/workflows/wheels.yml/badge.svg)](https://github.com/gvtulder/elasticdeform/actions/workflows/wheels.yml)
[![DOI](https://zenodo.org/badge/145003699.svg)](https://zenodo.org/badge/latestdoi/145003699)

This library implements elastic grid-based deformations for N-dimensional images.

The elastic deformation approach is described in
*   Ronneberger, Fischer, and Brox, "U-Net: Convolutional Networks for Biomedical
    Image Segmentation" (<https://arxiv.org/abs/1505.04597>)
*   Çiçek et al., "3D U-Net: Learning Dense Volumetric
    Segmentation from Sparse Annotation" (<https://arxiv.org/abs/1606.06650>)

The procedure generates a coarse displacement grid with a random displacement
for each grid point. This grid is then interpolated to compute a displacement for
each pixel in the input image. The input image is then deformed using the
displacement vectors and a spline interpolation.

In addition to the normal, forward deformation, this package also provides a
function that can backpropagate the gradient through the deformation. This makes
it possible to use the deformation as a layer in a convolutional neural network.
For convenience, TensorFlow and PyTorch wrappers are provided in `elasticdeform.tf`
and `elasticdeform.torch`.


Installation
------------

```
pip install elasticdeform
or
pip install git+https://github.com/gvtulder/elasticdeform
```

This library requires Python 3 and NumPy development headers.

On Windows, try to install the precompiled binaries directly using `pip install elasticdeform`.
If that does not work, [these precompiled packages](https://www.lfd.uci.edu/~gohlke/pythonlibs/#elasticdeform) might be an alternative option.


Examples
--------

This basic example deforms an image with a random 3 x 3 deformation grid:
```python
import numpy, imageio, elasticdeform
X = numpy.zeros((200, 300))
X[::10, ::10] = 1

# apply deformation with a random 3 x 3 grid
X_deformed = elasticdeform.deform_random_grid(X, sigma=25, points=3)

imageio.imsave('test_X.png', X)
imageio.imsave('test_X_deformed.png', X_deformed)
```

### Multiple inputs

If you have multiple images, e.g., an image and a segmentation image, you can
deform both simultaneously by providing a list of inputs. You can specify
a different spline order for each input.
```python
# apply deformation to inputs X and Y
[X_deformed, Y_deformed] = elasticdeform.deform_random_grid([X, Y])

# apply deformation to inputs X and Y,
# with a different interpolation for each input
[X_deformed, Y_deformed] = elasticdeform.deform_random_grid([X, Y], order=[3, 0])
```

### Multi-channel images

By default, a deformation will be applied to every dimension of the input. If you
have multi-channel images, you can use the `axis` parameter to specify which axes
should be deformed. The same deformation will be applied for each channel.

For example, to deform an RGB image across the first two dimensions, run:
```python
X_deformed = elasticdeform.deform_random_grid(X, axis=(0, 1))
```

When deforming multiple inputs, you can provide a tuple of axes for each input:
```python
X = numpy.random.rand(3, 200, 300)
Y = numpy.random.rand(200, 300)
[X_deformed, Y_deformed] = elasticdeform.deform_random_grid([X, Y], axis=[(1, 2), (0, 1)])
```

### Cropping

If you intend to crop a small subpatch from the deformed image, you can provide
the crop dimensions to the deform function. It will then compute only the cropped
output pixels, while still computing the deformation grid based on the full image
dimensions. This saves computation time.
```python
X = numpy.random.rand(200, 300)

# define a crop region
crop = (slice(50, 150), slice(0, 100))

# generate a deformation grid
displacement = numpy.random.randn(2, 3, 3) * 25

# deform full image
X_deformed = elasticdeform.deform_grid(X, displacement)
# compute only the cropped region
X_deformed_crop = elasticdeform.deform_grid(X, displacement, crop=crop)

# the deformation is the same
numpy.testing.assert_equal(X_deformed[crop], X_deformed_crop)
```


### Rotate and zoom

The deformation functions accept `rotate` and `zoom` parameters, which allows you
to combine the elastic deformation with rotation and scaling. This can be useful
as data augmentation step. The rotation and zoom are applied to the output
coordinates, using the center pixel of the output patch as the origin.
```python
# apply deformation with a random 3 x 3 grid,
# rotate by 30 degrees and rescale with a factor 1.5
X_deformed = elasticdeform.deform_random_grid(X, sigma=25, points=3,
                                              rotate=30, zoom=1.5)
```
Note that the output shape remains the same. The mapping of the input to the
output is rotated within the given output frame.

Rotate and zoom can be combined with the `crop` argument. In that case, the
scaling and rotation is performed relative to the center of the cropped output.

For more advanced transformations, it is also possible to provide an affine
transformation matrix directly.


### Gradient

The `deform_grid_gradient` function can be used to backpropagate the gradient of
the output with respect to the input. Call `deform_grid_gradient` with the
parameters that were used for the forward step.
```python
X = numpy.random.rand(200, 300)

# generate a deformation grid
displacement = numpy.random.randn(2, 3, 3) * 25

# perform forward deformation
X_deformed = elasticdeform.deform_grid(X, displacement)

# obtain the gradient w.r.t. X_deformed (e.g., with backpropagation)
dX_deformed = numpy.random.randn(*X_deformed.shape)

# compute the gradient w.r.t. X
dX = elasticdeform.deform_grid_gradient(dX_deformed, displacement)
```

Note: The gradient function will assume that the input has the same size as the
output. If you used the `crop` parameter in the forward phase, it is necessary to
provide the gradient function with the original, uncropped input shape in the
`X_shape` parameter.


### TensorFlow wrapper

The `elasticdeform.tf` module provides a wrapper for `deform_grid` in TensorFlow.
The function uses TensorFlow Tensors as input and output, but otherwise uses
the same parameters.
```python
import numpy
import elasticdeform.tf as etf

displacement_val = numpy.random.randn(2, 3, 3) * 5
X_val = numpy.random.rand(200, 300)
dY_val = numpy.random.rand(200, 300)

# construct TensorFlow input and top gradient
displacement = tf.Variable(displacement_val)
X = tf.Variable(X_val)
dY = tf.Variable(dY_val)

# the deform_grid function is similar to the plain Python equivalent,
# but it accepts and returns TensorFlow Tensors
X_deformed = etf.deform_grid(X, displacement, order=3)

# the gradient w.r.t. X can be computed in the normal TensorFlow manner
[dX] = tf.gradients(X_deformed, X, dY)
```


### PyTorch wrapper

The `elasticdeform.torch` module provides a wrapper for `deform_grid` in PyTorch.
The function uses PyTorch Tensors as input and output, but otherwise uses
the same parameters.
```python
import numpy
import elasticdeform.torch as etorch

displacement_val = numpy.random.randn(2, 3, 3) * 5
X_val = numpy.random.rand(200, 300)
dY_val = numpy.random.rand(200, 300)

# construct PyTorch input and top gradient
displacement = torch.tensor(displacement_val)
X = torch.tensor(X_val, requires_grad=True)
dY = torch.tensor(dY_val)

# the deform_grid function is similar to the plain Python equivalent,
# but it accepts and returns PyTorch Tensors
X_deformed = etorch.deform_grid(X, displacement, order=3)

# the gradient w.r.t. X can be computed in the normal PyTorch manner
X_deformed.backward(dY)
print(X.grad)
```


License information
-------------------

This library was written by [Gijs van Tulder](https://vantulder.net/) at the
[Biomedical Imaging Group Rotterdam](https://www.bigr.nl/),
Erasmus MC, Rotterdam, the Netherlands

It is inspired by a similar, Python-based implementation by
[Florian Calvet](https://github.com/fcalvet/image_tools).
This C-based implementation gives the same results, but is faster and has
a gradient implementation.

This C implementation includes a modified version of the `NI_GeometricTransform`
from [SciPy's ndimage library](https://github.com/scipy/scipy/blob/28636fbc3f16d562eab7b823546276111f6da98a/scipy/ndimage/src/ni_interpolation.c#L242).

This code is made available under the BSD license. See ``LICENSE.txt`` for details.

If you want to cite this library, please see [![DOI](https://zenodo.org/badge/145003699.svg)](https://zenodo.org/badge/latestdoi/145003699).

* <https://github.com/gvtulder/elasticdeform>
* <https://elasticdeform.readthedocs.io/>

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/gvtulder/elasticdeform",
    "name": "elasticdeform",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "Gijs van Tulder",
    "author_email": "gvtulder@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/a8/e3/97001ed966c4d3c91a1e0389ab2686fd01fa4c43e6aed0ec2c24aa8bf11d/elasticdeform-0.5.1.tar.gz",
    "platform": null,
    "description": "Elastic deformations for N-dimensional images (Python, SciPy, NumPy, TensorFlow, PyTorch)\n=========================================================================================\n\n[![Documentation Status](https://readthedocs.org/projects/elasticdeform/badge/?version=latest)](https://elasticdeform.readthedocs.io/en/latest/?badge=latest)\n[![Test](https://github.com/gvtulder/elasticdeform/actions/workflows/test.yml/badge.svg)](https://github.com/gvtulder/elasticdeform/actions/workflows/test.yml)\n[![Build](https://github.com/gvtulder/elasticdeform/actions/workflows/wheels.yml/badge.svg)](https://github.com/gvtulder/elasticdeform/actions/workflows/wheels.yml)\n[![DOI](https://zenodo.org/badge/145003699.svg)](https://zenodo.org/badge/latestdoi/145003699)\n\nThis library implements elastic grid-based deformations for N-dimensional images.\n\nThe elastic deformation approach is described in\n*   Ronneberger, Fischer, and Brox, \"U-Net: Convolutional Networks for Biomedical\n    Image Segmentation\" (<https://arxiv.org/abs/1505.04597>)\n*   \u00c7i\u00e7ek et al., \"3D U-Net: Learning Dense Volumetric\n    Segmentation from Sparse Annotation\" (<https://arxiv.org/abs/1606.06650>)\n\nThe procedure generates a coarse displacement grid with a random displacement\nfor each grid point. This grid is then interpolated to compute a displacement for\neach pixel in the input image. The input image is then deformed using the\ndisplacement vectors and a spline interpolation.\n\nIn addition to the normal, forward deformation, this package also provides a\nfunction that can backpropagate the gradient through the deformation. This makes\nit possible to use the deformation as a layer in a convolutional neural network.\nFor convenience, TensorFlow and PyTorch wrappers are provided in `elasticdeform.tf`\nand `elasticdeform.torch`.\n\n\nInstallation\n------------\n\n```\npip install elasticdeform\nor\npip install git+https://github.com/gvtulder/elasticdeform\n```\n\nThis library requires Python 3 and NumPy development headers.\n\nOn Windows, try to install the precompiled binaries directly using `pip install elasticdeform`.\nIf that does not work, [these precompiled packages](https://www.lfd.uci.edu/~gohlke/pythonlibs/#elasticdeform) might be an alternative option.\n\n\nExamples\n--------\n\nThis basic example deforms an image with a random 3 x 3 deformation grid:\n```python\nimport numpy, imageio, elasticdeform\nX = numpy.zeros((200, 300))\nX[::10, ::10] = 1\n\n# apply deformation with a random 3 x 3 grid\nX_deformed = elasticdeform.deform_random_grid(X, sigma=25, points=3)\n\nimageio.imsave('test_X.png', X)\nimageio.imsave('test_X_deformed.png', X_deformed)\n```\n\n### Multiple inputs\n\nIf you have multiple images, e.g., an image and a segmentation image, you can\ndeform both simultaneously by providing a list of inputs. You can specify\na different spline order for each input.\n```python\n# apply deformation to inputs X and Y\n[X_deformed, Y_deformed] = elasticdeform.deform_random_grid([X, Y])\n\n# apply deformation to inputs X and Y,\n# with a different interpolation for each input\n[X_deformed, Y_deformed] = elasticdeform.deform_random_grid([X, Y], order=[3, 0])\n```\n\n### Multi-channel images\n\nBy default, a deformation will be applied to every dimension of the input. If you\nhave multi-channel images, you can use the `axis` parameter to specify which axes\nshould be deformed. The same deformation will be applied for each channel.\n\nFor example, to deform an RGB image across the first two dimensions, run:\n```python\nX_deformed = elasticdeform.deform_random_grid(X, axis=(0, 1))\n```\n\nWhen deforming multiple inputs, you can provide a tuple of axes for each input:\n```python\nX = numpy.random.rand(3, 200, 300)\nY = numpy.random.rand(200, 300)\n[X_deformed, Y_deformed] = elasticdeform.deform_random_grid([X, Y], axis=[(1, 2), (0, 1)])\n```\n\n### Cropping\n\nIf you intend to crop a small subpatch from the deformed image, you can provide\nthe crop dimensions to the deform function. It will then compute only the cropped\noutput pixels, while still computing the deformation grid based on the full image\ndimensions. This saves computation time.\n```python\nX = numpy.random.rand(200, 300)\n\n# define a crop region\ncrop = (slice(50, 150), slice(0, 100))\n\n# generate a deformation grid\ndisplacement = numpy.random.randn(2, 3, 3) * 25\n\n# deform full image\nX_deformed = elasticdeform.deform_grid(X, displacement)\n# compute only the cropped region\nX_deformed_crop = elasticdeform.deform_grid(X, displacement, crop=crop)\n\n# the deformation is the same\nnumpy.testing.assert_equal(X_deformed[crop], X_deformed_crop)\n```\n\n\n### Rotate and zoom\n\nThe deformation functions accept `rotate` and `zoom` parameters, which allows you\nto combine the elastic deformation with rotation and scaling. This can be useful\nas data augmentation step. The rotation and zoom are applied to the output\ncoordinates, using the center pixel of the output patch as the origin.\n```python\n# apply deformation with a random 3 x 3 grid,\n# rotate by 30 degrees and rescale with a factor 1.5\nX_deformed = elasticdeform.deform_random_grid(X, sigma=25, points=3,\n                                              rotate=30, zoom=1.5)\n```\nNote that the output shape remains the same. The mapping of the input to the\noutput is rotated within the given output frame.\n\nRotate and zoom can be combined with the `crop` argument. In that case, the\nscaling and rotation is performed relative to the center of the cropped output.\n\nFor more advanced transformations, it is also possible to provide an affine\ntransformation matrix directly.\n\n\n### Gradient\n\nThe `deform_grid_gradient` function can be used to backpropagate the gradient of\nthe output with respect to the input. Call `deform_grid_gradient` with the\nparameters that were used for the forward step.\n```python\nX = numpy.random.rand(200, 300)\n\n# generate a deformation grid\ndisplacement = numpy.random.randn(2, 3, 3) * 25\n\n# perform forward deformation\nX_deformed = elasticdeform.deform_grid(X, displacement)\n\n# obtain the gradient w.r.t. X_deformed (e.g., with backpropagation)\ndX_deformed = numpy.random.randn(*X_deformed.shape)\n\n# compute the gradient w.r.t. X\ndX = elasticdeform.deform_grid_gradient(dX_deformed, displacement)\n```\n\nNote: The gradient function will assume that the input has the same size as the\noutput. If you used the `crop` parameter in the forward phase, it is necessary to\nprovide the gradient function with the original, uncropped input shape in the\n`X_shape` parameter.\n\n\n### TensorFlow wrapper\n\nThe `elasticdeform.tf` module provides a wrapper for `deform_grid` in TensorFlow.\nThe function uses TensorFlow Tensors as input and output, but otherwise uses\nthe same parameters.\n```python\nimport numpy\nimport elasticdeform.tf as etf\n\ndisplacement_val = numpy.random.randn(2, 3, 3) * 5\nX_val = numpy.random.rand(200, 300)\ndY_val = numpy.random.rand(200, 300)\n\n# construct TensorFlow input and top gradient\ndisplacement = tf.Variable(displacement_val)\nX = tf.Variable(X_val)\ndY = tf.Variable(dY_val)\n\n# the deform_grid function is similar to the plain Python equivalent,\n# but it accepts and returns TensorFlow Tensors\nX_deformed = etf.deform_grid(X, displacement, order=3)\n\n# the gradient w.r.t. X can be computed in the normal TensorFlow manner\n[dX] = tf.gradients(X_deformed, X, dY)\n```\n\n\n### PyTorch wrapper\n\nThe `elasticdeform.torch` module provides a wrapper for `deform_grid` in PyTorch.\nThe function uses PyTorch Tensors as input and output, but otherwise uses\nthe same parameters.\n```python\nimport numpy\nimport elasticdeform.torch as etorch\n\ndisplacement_val = numpy.random.randn(2, 3, 3) * 5\nX_val = numpy.random.rand(200, 300)\ndY_val = numpy.random.rand(200, 300)\n\n# construct PyTorch input and top gradient\ndisplacement = torch.tensor(displacement_val)\nX = torch.tensor(X_val, requires_grad=True)\ndY = torch.tensor(dY_val)\n\n# the deform_grid function is similar to the plain Python equivalent,\n# but it accepts and returns PyTorch Tensors\nX_deformed = etorch.deform_grid(X, displacement, order=3)\n\n# the gradient w.r.t. X can be computed in the normal PyTorch manner\nX_deformed.backward(dY)\nprint(X.grad)\n```\n\n\nLicense information\n-------------------\n\nThis library was written by [Gijs van Tulder](https://vantulder.net/) at the\n[Biomedical Imaging Group Rotterdam](https://www.bigr.nl/),\nErasmus MC, Rotterdam, the Netherlands\n\nIt is inspired by a similar, Python-based implementation by\n[Florian Calvet](https://github.com/fcalvet/image_tools).\nThis C-based implementation gives the same results, but is faster and has\na gradient implementation.\n\nThis C implementation includes a modified version of the `NI_GeometricTransform`\nfrom [SciPy's ndimage library](https://github.com/scipy/scipy/blob/28636fbc3f16d562eab7b823546276111f6da98a/scipy/ndimage/src/ni_interpolation.c#L242).\n\nThis code is made available under the BSD license. See ``LICENSE.txt`` for details.\n\nIf you want to cite this library, please see [![DOI](https://zenodo.org/badge/145003699.svg)](https://zenodo.org/badge/latestdoi/145003699).\n\n* <https://github.com/gvtulder/elasticdeform>\n* <https://elasticdeform.readthedocs.io/>\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Elastic deformations for N-D images.",
    "version": "0.5.1",
    "project_urls": {
        "Homepage": "https://github.com/gvtulder/elasticdeform"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "129d9e73b5318633e30141943281bd6ec8a047e0b1d36ed1e396a4ba06e42169",
                "md5": "e9d04fa652128ba798aecbf1f8790e42",
                "sha256": "bed0c4d317984038917c39655214a0c51286922c773b97357f072fc26672acde"
            },
            "downloads": -1,
            "filename": "elasticdeform-0.5.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e9d04fa652128ba798aecbf1f8790e42",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 37261,
            "upload_time": "2024-05-23T20:43:27",
            "upload_time_iso_8601": "2024-05-23T20:43:27.175738Z",
            "url": "https://files.pythonhosted.org/packages/12/9d/9e73b5318633e30141943281bd6ec8a047e0b1d36ed1e396a4ba06e42169/elasticdeform-0.5.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba7582bc064b1379c54db7849457f1fb506b176baa0845d6ad1f049e2b5cc41d",
                "md5": "ae49ec9d86d12acc8f3272f273b55e70",
                "sha256": "c25ae877a0bb9a5b85baad5c0aa61e5a0c3d7e882ac6abd622d318b8da10ef2d"
            },
            "downloads": -1,
            "filename": "elasticdeform-0.5.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ae49ec9d86d12acc8f3272f273b55e70",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 34707,
            "upload_time": "2024-05-23T20:43:28",
            "upload_time_iso_8601": "2024-05-23T20:43:28.377712Z",
            "url": "https://files.pythonhosted.org/packages/ba/75/82bc064b1379c54db7849457f1fb506b176baa0845d6ad1f049e2b5cc41d/elasticdeform-0.5.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc191895a0e7ed4a672a78a7dd02af52d0d84cb54fb504ddb252cdf3d9cb51fa",
                "md5": "c063dd61564bebbf9f2f9e41c693a173",
                "sha256": "daf4419135929c3afb0d9ad8d01f84be58ed2406e7b7ea57bc91eed7b76be022"
            },
            "downloads": -1,
            "filename": "elasticdeform-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c063dd61564bebbf9f2f9e41c693a173",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 91607,
            "upload_time": "2024-05-23T20:43:29",
            "upload_time_iso_8601": "2024-05-23T20:43:29.568728Z",
            "url": "https://files.pythonhosted.org/packages/fc/19/1895a0e7ed4a672a78a7dd02af52d0d84cb54fb504ddb252cdf3d9cb51fa/elasticdeform-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ad1ac205d621ea4d0a1124428e02de0dfef14e03562d63905c473a91ff79295",
                "md5": "cfd14cd86b05d5ac85fc50ead8a19937",
                "sha256": "8a1e45c3a5f8e949ff36187288699642617cf9d35f8d92a6c45be9a718e2ac04"
            },
            "downloads": -1,
            "filename": "elasticdeform-0.5.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cfd14cd86b05d5ac85fc50ead8a19937",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 32021,
            "upload_time": "2024-05-23T20:43:30",
            "upload_time_iso_8601": "2024-05-23T20:43:30.763001Z",
            "url": "https://files.pythonhosted.org/packages/8a/d1/ac205d621ea4d0a1124428e02de0dfef14e03562d63905c473a91ff79295/elasticdeform-0.5.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1552fd326b130b8cfb76069b52e8e14e3c3736667554fbcd10795474300d0868",
                "md5": "277cb30e683145e2e65328ff4f4a3ad8",
                "sha256": "62f9e4077d4973c4975583bcc921c4599906951c3e042f7f55a5fb2437310cd7"
            },
            "downloads": -1,
            "filename": "elasticdeform-0.5.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "277cb30e683145e2e65328ff4f4a3ad8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 37263,
            "upload_time": "2024-05-23T20:43:31",
            "upload_time_iso_8601": "2024-05-23T20:43:31.674617Z",
            "url": "https://files.pythonhosted.org/packages/15/52/fd326b130b8cfb76069b52e8e14e3c3736667554fbcd10795474300d0868/elasticdeform-0.5.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "14beabfc353749d02ced833839f9c94f28693889543a0ed9e9c6c310c59aba1d",
                "md5": "673a83338135e4503afa01fe4f246a7a",
                "sha256": "151daf857245e952f602a39c1b169f7d65d1064e0b239b46ea9cceda814f22ad"
            },
            "downloads": -1,
            "filename": "elasticdeform-0.5.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "673a83338135e4503afa01fe4f246a7a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 34706,
            "upload_time": "2024-05-23T20:43:32",
            "upload_time_iso_8601": "2024-05-23T20:43:32.743394Z",
            "url": "https://files.pythonhosted.org/packages/14/be/abfc353749d02ced833839f9c94f28693889543a0ed9e9c6c310c59aba1d/elasticdeform-0.5.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0507b880b88558a2bcb062027aac7ae548b20dc8a3935a983a519a32c1786276",
                "md5": "2cfdcf7d81e15ad9066a5fa68ffc868b",
                "sha256": "ebb3ff5223909c5b16d978a64ee2e39694d4417f1e8cc98d6c254fe2fab54094"
            },
            "downloads": -1,
            "filename": "elasticdeform-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2cfdcf7d81e15ad9066a5fa68ffc868b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 93085,
            "upload_time": "2024-05-23T20:43:33",
            "upload_time_iso_8601": "2024-05-23T20:43:33.854232Z",
            "url": "https://files.pythonhosted.org/packages/05/07/b880b88558a2bcb062027aac7ae548b20dc8a3935a983a519a32c1786276/elasticdeform-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb1ad00503e042b55525b3c4814eb3d0935b7c3baf4160d11628d2e7dced2e58",
                "md5": "b19238d1fd4db8798561eff6886ce454",
                "sha256": "f7caea0c897c2953ae810361f41df4f554b104168d945365e8d26e8955afeb3f"
            },
            "downloads": -1,
            "filename": "elasticdeform-0.5.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b19238d1fd4db8798561eff6886ce454",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 32021,
            "upload_time": "2024-05-23T20:43:35",
            "upload_time_iso_8601": "2024-05-23T20:43:35.071613Z",
            "url": "https://files.pythonhosted.org/packages/cb/1a/d00503e042b55525b3c4814eb3d0935b7c3baf4160d11628d2e7dced2e58/elasticdeform-0.5.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb239f259872967e835a3b4d40f6fdb5ac8ba42e144d76dfbb74443f38909568",
                "md5": "dea83b11dde87adc16e80b926325bb01",
                "sha256": "27d98f213033f4b22fcd4c5b411154ae1d5d19ae33e3b2497c3198201b36716d"
            },
            "downloads": -1,
            "filename": "elasticdeform-0.5.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dea83b11dde87adc16e80b926325bb01",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 37319,
            "upload_time": "2024-05-23T20:43:36",
            "upload_time_iso_8601": "2024-05-23T20:43:36.228175Z",
            "url": "https://files.pythonhosted.org/packages/cb/23/9f259872967e835a3b4d40f6fdb5ac8ba42e144d76dfbb74443f38909568/elasticdeform-0.5.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8dd269cf0a819efd6b6db326c896592658e6abe2cace4937ce3561232b9f8c27",
                "md5": "2676dde2cf471eec40425dab2b70d166",
                "sha256": "4a226c1c552c7cf60ea05675d956c60347ac5ffe706e6f40984c446433b41659"
            },
            "downloads": -1,
            "filename": "elasticdeform-0.5.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2676dde2cf471eec40425dab2b70d166",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 34730,
            "upload_time": "2024-05-23T20:43:37",
            "upload_time_iso_8601": "2024-05-23T20:43:37.134706Z",
            "url": "https://files.pythonhosted.org/packages/8d/d2/69cf0a819efd6b6db326c896592658e6abe2cace4937ce3561232b9f8c27/elasticdeform-0.5.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "acd83519db9885bd148aa2a108c2e5d3a1341df2198e1805385de40f74f584ed",
                "md5": "85a0e7ec129cbefdb6ae89a09f1c7e09",
                "sha256": "995de482d022519f449980755d649a7f820795a858b43ca7f17437254e64fbfd"
            },
            "downloads": -1,
            "filename": "elasticdeform-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "85a0e7ec129cbefdb6ae89a09f1c7e09",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 93627,
            "upload_time": "2024-05-23T20:43:39",
            "upload_time_iso_8601": "2024-05-23T20:43:39.280289Z",
            "url": "https://files.pythonhosted.org/packages/ac/d8/3519db9885bd148aa2a108c2e5d3a1341df2198e1805385de40f74f584ed/elasticdeform-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39700681c8d322ff6061fd1978844f4504df9737bb7ef444e2cf9c12bafb2626",
                "md5": "25f17e6680b63cdb455fa4a6c6763e75",
                "sha256": "7e3a4671116984393e60c9373340944accd81a0f34b69b9063320e766b88d0cb"
            },
            "downloads": -1,
            "filename": "elasticdeform-0.5.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "25f17e6680b63cdb455fa4a6c6763e75",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 32054,
            "upload_time": "2024-05-23T20:43:41",
            "upload_time_iso_8601": "2024-05-23T20:43:41.279034Z",
            "url": "https://files.pythonhosted.org/packages/39/70/0681c8d322ff6061fd1978844f4504df9737bb7ef444e2cf9c12bafb2626/elasticdeform-0.5.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e95ea63d1a635fef87c1df785a8c9bbbef8f7ea1cab2fc13e21fae740a7442a2",
                "md5": "7ffa7c9ecb5020ff3fe494bfd98bd376",
                "sha256": "0296789a3747a874aed56d8952845f238f3574ecf17efade9bcdca9714edc94a"
            },
            "downloads": -1,
            "filename": "elasticdeform-0.5.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7ffa7c9ecb5020ff3fe494bfd98bd376",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 37298,
            "upload_time": "2024-05-23T20:43:42",
            "upload_time_iso_8601": "2024-05-23T20:43:42.479553Z",
            "url": "https://files.pythonhosted.org/packages/e9/5e/a63d1a635fef87c1df785a8c9bbbef8f7ea1cab2fc13e21fae740a7442a2/elasticdeform-0.5.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b890f5fb76ddd813908196a1fc624df0a0e376b364a9c677aa467fe744ebbfc",
                "md5": "0e9d7ff99c345d1c0d71091e4ce3015e",
                "sha256": "27644bb99f69a6a946707376dec062c424b52c4cb547162b12662b2571b5372d"
            },
            "downloads": -1,
            "filename": "elasticdeform-0.5.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0e9d7ff99c345d1c0d71091e4ce3015e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 34751,
            "upload_time": "2024-05-23T20:43:44",
            "upload_time_iso_8601": "2024-05-23T20:43:44.110855Z",
            "url": "https://files.pythonhosted.org/packages/3b/89/0f5fb76ddd813908196a1fc624df0a0e376b364a9c677aa467fe744ebbfc/elasticdeform-0.5.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30a27dedda275c906aa3cff267bde28783e4777ba4c8831d1a358693a8d4164a",
                "md5": "ee79662a6b0be45ed116d1fe7a95f26b",
                "sha256": "29443d52fac0b2694b5c51f4cdeaacc7d432dedb742861f56198734a0b483018"
            },
            "downloads": -1,
            "filename": "elasticdeform-0.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ee79662a6b0be45ed116d1fe7a95f26b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 91531,
            "upload_time": "2024-05-23T20:43:45",
            "upload_time_iso_8601": "2024-05-23T20:43:45.740760Z",
            "url": "https://files.pythonhosted.org/packages/30/a2/7dedda275c906aa3cff267bde28783e4777ba4c8831d1a358693a8d4164a/elasticdeform-0.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "685dc8fdb970f2ad1feba19aa5d6bf0c8e535f581e3c1246eff9510ef49052fd",
                "md5": "53a6ad9480f5209a36c9df20b74639bf",
                "sha256": "00e81ad072d62d45d68e12a4229098eec1ca28f896f39396ac0e0066848c54fb"
            },
            "downloads": -1,
            "filename": "elasticdeform-0.5.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "53a6ad9480f5209a36c9df20b74639bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 32065,
            "upload_time": "2024-05-23T20:43:46",
            "upload_time_iso_8601": "2024-05-23T20:43:46.837452Z",
            "url": "https://files.pythonhosted.org/packages/68/5d/c8fdb970f2ad1feba19aa5d6bf0c8e535f581e3c1246eff9510ef49052fd/elasticdeform-0.5.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d38349dafb7e8ab9e65d121b55d34dcb82377c0437013bfbf83f008271bfb87",
                "md5": "a0c1a6be12f8cf12e4eaa2a8e1cc6645",
                "sha256": "14cebe9094b684808e7f72c0c73acae849c3cf0a534f809d35ad8aad29c71ffb"
            },
            "downloads": -1,
            "filename": "elasticdeform-0.5.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a0c1a6be12f8cf12e4eaa2a8e1cc6645",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 37263,
            "upload_time": "2024-05-23T20:43:47",
            "upload_time_iso_8601": "2024-05-23T20:43:47.732902Z",
            "url": "https://files.pythonhosted.org/packages/4d/38/349dafb7e8ab9e65d121b55d34dcb82377c0437013bfbf83f008271bfb87/elasticdeform-0.5.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1d85b8d9125c59c805c1a47406d38ba675d1812231e484493fc7e7fcca90498",
                "md5": "863624ab54e3507b4fafc3fea9f56a7d",
                "sha256": "df2709a882fe036831a929ab5b64827e0898374cb8211318dac9ab87d8fdec9b"
            },
            "downloads": -1,
            "filename": "elasticdeform-0.5.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "863624ab54e3507b4fafc3fea9f56a7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 34700,
            "upload_time": "2024-05-23T20:43:48",
            "upload_time_iso_8601": "2024-05-23T20:43:48.754459Z",
            "url": "https://files.pythonhosted.org/packages/a1/d8/5b8d9125c59c805c1a47406d38ba675d1812231e484493fc7e7fcca90498/elasticdeform-0.5.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f826e9e20457b90b3b4174191e9c2aab05d277bc4d12c173370ae97c353b346",
                "md5": "377e391fa0de1d9f808c5b937bc90725",
                "sha256": "1dc5031cce98c85fc8830254b1ae35a11a16e4ce65ee8a8eeadd49c5b5b392a7"
            },
            "downloads": -1,
            "filename": "elasticdeform-0.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "377e391fa0de1d9f808c5b937bc90725",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 91255,
            "upload_time": "2024-05-23T20:43:50",
            "upload_time_iso_8601": "2024-05-23T20:43:50.851038Z",
            "url": "https://files.pythonhosted.org/packages/6f/82/6e9e20457b90b3b4174191e9c2aab05d277bc4d12c173370ae97c353b346/elasticdeform-0.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b51449ba73936e8855da506b2beeb7d08e3cb11e983875c31d5713ce7ad37f5",
                "md5": "577f143c0e7632a3603f86dbe9a65b44",
                "sha256": "928d57293a449a221e525f10e8f81ee42c2120725fa1dc91adeb7c2381961334"
            },
            "downloads": -1,
            "filename": "elasticdeform-0.5.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "577f143c0e7632a3603f86dbe9a65b44",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 32012,
            "upload_time": "2024-05-23T20:43:52",
            "upload_time_iso_8601": "2024-05-23T20:43:52.507653Z",
            "url": "https://files.pythonhosted.org/packages/6b/51/449ba73936e8855da506b2beeb7d08e3cb11e983875c31d5713ce7ad37f5/elasticdeform-0.5.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8e397001ed966c4d3c91a1e0389ab2686fd01fa4c43e6aed0ec2c24aa8bf11d",
                "md5": "00e9120183c5662584b8c3aba719cc09",
                "sha256": "5f7145d018b6fa1d5d352a2a6fd6140bb845e2a1df1a53a6604cfbd104d12a81"
            },
            "downloads": -1,
            "filename": "elasticdeform-0.5.1.tar.gz",
            "has_sig": false,
            "md5_digest": "00e9120183c5662584b8c3aba719cc09",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 33695,
            "upload_time": "2024-05-23T20:43:53",
            "upload_time_iso_8601": "2024-05-23T20:43:53.732038Z",
            "url": "https://files.pythonhosted.org/packages/a8/e3/97001ed966c4d3c91a1e0389ab2686fd01fa4c43e6aed0ec2c24aa8bf11d/elasticdeform-0.5.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-23 20:43:53",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "gvtulder",
    "github_project": "elasticdeform",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "elasticdeform"
}
        
Elapsed time: 0.25271s