cycpd


Namecycpd JSON
Version 0.28 PyPI version JSON
download
home_pagehttps://github.com/gattia/cycpd
SummaryNumpy + Cython Implementation of the Coherent Point Drift Algorithm
upload_time2024-03-25 04:13:55
maintainerNone
docs_urlNone
authorAnthony Gatti
requires_pythonNone
licenseMIT
keywords image processing point cloud registration mesh surface
VCS
bugtrack_url
requirements numpy Cython
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Cython-CPD
![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)<br>
![Build Status](https://github.com/gattia/cycpd/actions/workflows/build-test.yml/badge.svg?branch=main)<br>
|[Documentation](https://anthonygattiphd.com/cycpd/)|

Numpy + Cython Implementation of the Coherent Point Drift Algorithm.

Update to the PyCPD module to include Cython to try and improve performance 


# Introduction / Background

Please see here (https://github.com/siavashk/pycpd) for Pure Numpy implementation <br>
Please see here (https://tinyurl.com/tph4u7e) for original manuscript describing CPD <br>
Please see here (https://sites.google.com/site/myronenko/research/cpd) for original code (Matlab) that you can request <br>
Please see here for Matlab code stored on github by secondary source (https://github.com/markeroon/matlab-computer-vision-routines/tree/master/third_party/CoherentPointDrift)<br>
Please see here (https://github.com/gadomski/cpd) for a C++ implementation<br>


This implementation aims to speed up the PyCPD implementation of CPD. First we added cython functions to compute the expectation step of the EM algorithm. This cut E-step times to be ~1/3. E-step is the major bottle neck for rigid and affine registration. Therefore, this function reduces registration of those methods to be ~1/3.

For deformable (non-rigid) registration, the major bottle neck is solving the system of equations for the transformation paramters, which took ~9 seconds (5k point clouds). The first approach we took to speed things up is to implement the low-rank method described in the original CPD paper. This low-rank method significantly reduced computation time and now the entire M-step using default parametrs took <1 second and the E-step is the bottleneck (same as rigid and affine).


The next steps will be to: 

1. Add the FGT (Fast Gauss Transform). This has the potential to further increase the performance of all methods because it reduces computation for the E-step, which is consistent for all three methods. 
2. Write more Cython functions to speed up other process/computations. 


# Installation

You should be able to install this by cloning, navigating to this root directory, and installing with pip:

```
git clone https://github.com/gattia/cycpd
cd cycpd
pip install .
```

## Cython
If the above didnt work... previous versions of `cycpd` had issues with Cython - if you have cython related issues, the following may be helpful: 

Must have Cython installed to build package

```bash
pip install cython
```

or

```
conda install -c anaconda cython
```

For any operating system you will have to have a C compiler. If you do not have a C compiler you will get errors when building cycpd. You can often follow these errors to install the appropriate packages. 

Details about installing C-compiler and other steps necessary for installing Cython can be found here: http://docs.cython.org/en/latest/src/quickstart/install.html. Briefly. 

### Linux 
C compiler (gcc) is often present. If it is not, you can install it using: 
`sudo apt-get install build-essential`

### OSX
You will like need to install gcc (if you havent already). This can be done by installing Apple's xcode command line tools:
`xcode-select --install`

### Windows
You will need Visual Studio Community 2019 (free) & Build Tools for Visual Studio 2019. 
These can be downloaded from: https://visualstudio.microsoft.com/downloads/
You may need newer versions of Visual Studio and it's tools, but thats the one that was required as of writing. 


With cython installed:




# Examples

To run the examples, you will also need `matplotlib` which is not required for the base package. This can be installed using: 

```bash
pip install matplotlib
```


There are three exmples currently implemented. They all show registration of two 3D bones with 5k points each. The Affine applies a transformation to a bone and then use CPD to return it back to its original shape. The rigid and deformable (non-rigid) warps the bone of one person onto a version of that same bone warped to best fit another person. The deformable example will end at 100 epochs (default), at which time it will not have converged fully.

These examples can be run by navigating to the examples folder (after installing) and running: 

```
python knee_rigid_3D.py
python knee_affine_3D.py
python knee_deformable_3D.py
```

## Rigid
![](https://raw.githubusercontent.com/gattia/cycpd/main/gifs/Rigid_knee.gif)


## Affine
![](https://raw.githubusercontent.com/gattia/cycpd/main/gifs/Affine_knee.gif)


## Non-Rigid (Deformable)
![](https://raw.githubusercontent.com/gattia/cycpd/main/gifs/Deformable_knee.gif)


# Tests
## Regular Tests
Testing includes rigid, affine, and deformable examples. The rigid, affine, and 2D deformable all test to ensure the algorithm recovers a predefined transformation. The 3D deformable tests to ensure that the resulting registrtaion has errors (between a mesh and the closest point on the other mesh) below a pre-defined tolerance. 

These tests are continually run by Github Actions for all new merges/builds. All of these tests can be run by navigating to the cpd directory and running: 

```bash
pytest
```

Inidividual tests can be run by running 

```
python -m pytests path_to_test
```

`path_to_test` need be replaced by the path to the approriate test. If in the testing directory, it can be just `affine_test.py` or similar. If not in testing directory, will need to specify full (absolute or relative) path.


## Timing of Analyses
If the test files are run directly, e.g.,:

`python affine_test.py`

the same tests that are run by pytest will be conducted. Running these files directly will also time the analyses and print the time to do the analysis. Running this way will also run the diagnostics that are built in to the functions and will print those out. 

# Contributing
If you want to contribute, please read over the documentaiton in `CONTRIBUTING.md`

# License
MIT License


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/gattia/cycpd",
    "name": "cycpd",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "image processing, point cloud, registration, mesh, surface",
    "author": "Anthony Gatti",
    "author_email": "anthony@neuralseg.com",
    "download_url": "https://files.pythonhosted.org/packages/da/b4/7b8332ceaba05671f78ff0326d35e675c4bba6fd5d682cd0db96599479b3/cycpd-0.28.tar.gz",
    "platform": null,
    "description": "# Cython-CPD\n![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)<br>\n![Build Status](https://github.com/gattia/cycpd/actions/workflows/build-test.yml/badge.svg?branch=main)<br>\n|[Documentation](https://anthonygattiphd.com/cycpd/)|\n\nNumpy + Cython Implementation of the Coherent Point Drift Algorithm.\n\nUpdate to the PyCPD module to include Cython to try and improve performance \n\n\n# Introduction / Background\n\nPlease see here (https://github.com/siavashk/pycpd) for Pure Numpy implementation <br>\nPlease see here (https://tinyurl.com/tph4u7e) for original manuscript describing CPD <br>\nPlease see here (https://sites.google.com/site/myronenko/research/cpd) for original code (Matlab) that you can request <br>\nPlease see here for Matlab code stored on github by secondary source (https://github.com/markeroon/matlab-computer-vision-routines/tree/master/third_party/CoherentPointDrift)<br>\nPlease see here (https://github.com/gadomski/cpd) for a C++ implementation<br>\n\n\nThis implementation aims to speed up the PyCPD implementation of CPD. First we added cython functions to compute the expectation step of the EM algorithm. This cut E-step times to be ~1/3. E-step is the major bottle neck for rigid and affine registration. Therefore, this function reduces registration of those methods to be ~1/3.\n\nFor deformable (non-rigid) registration, the major bottle neck is solving the system of equations for the transformation paramters, which took ~9 seconds (5k point clouds). The first approach we took to speed things up is to implement the low-rank method described in the original CPD paper. This low-rank method significantly reduced computation time and now the entire M-step using default parametrs took <1 second and the E-step is the bottleneck (same as rigid and affine).\n\n\nThe next steps will be to: \n\n1. Add the FGT (Fast Gauss Transform). This has the potential to further increase the performance of all methods because it reduces computation for the E-step, which is consistent for all three methods. \n2. Write more Cython functions to speed up other process/computations. \n\n\n# Installation\n\nYou should be able to install this by cloning, navigating to this root directory, and installing with pip:\n\n```\ngit clone https://github.com/gattia/cycpd\ncd cycpd\npip install .\n```\n\n## Cython\nIf the above didnt work... previous versions of `cycpd` had issues with Cython - if you have cython related issues, the following may be helpful: \n\nMust have Cython installed to build package\n\n```bash\npip install cython\n```\n\nor\n\n```\nconda install -c anaconda cython\n```\n\nFor any operating system you will have to have a C compiler. If you do not have a C compiler you will get errors when building cycpd. You can often follow these errors to install the appropriate packages. \n\nDetails about installing C-compiler and other steps necessary for installing Cython can be found here: http://docs.cython.org/en/latest/src/quickstart/install.html. Briefly. \n\n### Linux \nC compiler (gcc) is often present. If it is not, you can install it using: \n`sudo apt-get install build-essential`\n\n### OSX\nYou will like need to install gcc (if you havent already). This can be done by installing Apple's xcode command line tools:\n`xcode-select --install`\n\n### Windows\nYou will need Visual Studio Community 2019 (free) & Build Tools for Visual Studio 2019. \nThese can be downloaded from: https://visualstudio.microsoft.com/downloads/\nYou may need newer versions of Visual Studio and it's tools, but thats the one that was required as of writing. \n\n\nWith cython installed:\n\n\n\n\n# Examples\n\nTo run the examples, you will also need `matplotlib` which is not required for the base package. This can be installed using: \n\n```bash\npip install matplotlib\n```\n\n\nThere are three exmples currently implemented. They all show registration of two 3D bones with 5k points each. The Affine applies a transformation to a bone and then use CPD to return it back to its original shape. The rigid and deformable (non-rigid) warps the bone of one person onto a version of that same bone warped to best fit another person. The deformable example will end at 100 epochs (default), at which time it will not have converged fully.\n\nThese examples can be run by navigating to the examples folder (after installing) and running: \n\n```\npython knee_rigid_3D.py\npython knee_affine_3D.py\npython knee_deformable_3D.py\n```\n\n## Rigid\n![](https://raw.githubusercontent.com/gattia/cycpd/main/gifs/Rigid_knee.gif)\n\n\n## Affine\n![](https://raw.githubusercontent.com/gattia/cycpd/main/gifs/Affine_knee.gif)\n\n\n## Non-Rigid (Deformable)\n![](https://raw.githubusercontent.com/gattia/cycpd/main/gifs/Deformable_knee.gif)\n\n\n# Tests\n## Regular Tests\nTesting includes rigid, affine, and deformable examples. The rigid, affine, and 2D deformable all test to ensure the algorithm recovers a predefined transformation. The 3D deformable tests to ensure that the resulting registrtaion has errors (between a mesh and the closest point on the other mesh) below a pre-defined tolerance. \n\nThese tests are continually run by Github Actions for all new merges/builds. All of these tests can be run by navigating to the cpd directory and running: \n\n```bash\npytest\n```\n\nInidividual tests can be run by running \n\n```\npython -m pytests path_to_test\n```\n\n`path_to_test` need be replaced by the path to the approriate test. If in the testing directory, it can be just `affine_test.py` or similar. If not in testing directory, will need to specify full (absolute or relative) path.\n\n\n## Timing of Analyses\nIf the test files are run directly, e.g.,:\n\n`python affine_test.py`\n\nthe same tests that are run by pytest will be conducted. Running these files directly will also time the analyses and print the time to do the analysis. Running this way will also run the diagnostics that are built in to the functions and will print those out. \n\n# Contributing\nIf you want to contribute, please read over the documentaiton in `CONTRIBUTING.md`\n\n# License\nMIT License\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Numpy + Cython Implementation of the Coherent Point Drift Algorithm",
    "version": "0.28",
    "project_urls": {
        "Homepage": "https://github.com/gattia/cycpd"
    },
    "split_keywords": [
        "image processing",
        " point cloud",
        " registration",
        " mesh",
        " surface"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "973cb25a5a2d78a5fad86b953428f744988a4dcf46b416b16604f33671a2ab0c",
                "md5": "bf30713af4030a05edc2a8679242db43",
                "sha256": "444894c28791b799f4a07bf51a81f987b8f9c15db4247a2dfa4180a2553adf08"
            },
            "downloads": -1,
            "filename": "cycpd-0.28-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "bf30713af4030a05edc2a8679242db43",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 214125,
            "upload_time": "2024-03-25T04:13:21",
            "upload_time_iso_8601": "2024-03-25T04:13:21.815011Z",
            "url": "https://files.pythonhosted.org/packages/97/3c/b25a5a2d78a5fad86b953428f744988a4dcf46b416b16604f33671a2ab0c/cycpd-0.28-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b622bb3a396ccfb1f68333ab579cb25c6b6d98af40f059d758652e0632dd49e",
                "md5": "4e4d59e548a570f7fda3cfb1cc5b1cd7",
                "sha256": "8c1c6387aafcb81a0ea2eca705a8b7d3ff265dd81308bccf585ca6119112b77e"
            },
            "downloads": -1,
            "filename": "cycpd-0.28-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e4d59e548a570f7fda3cfb1cc5b1cd7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 116339,
            "upload_time": "2024-03-25T04:13:23",
            "upload_time_iso_8601": "2024-03-25T04:13:23.127788Z",
            "url": "https://files.pythonhosted.org/packages/6b/62/2bb3a396ccfb1f68333ab579cb25c6b6d98af40f059d758652e0632dd49e/cycpd-0.28-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f808f22efe5cabad172673809e62c3e17b9ab0d3f0c997e0c32aa60eec2a6c9b",
                "md5": "15f5be420270992ac9f4e341c60e9554",
                "sha256": "7c23bcc5e2f0260095271a7dcf1cc6e4d50f3af419b5684e2ec2b216fa65d45d"
            },
            "downloads": -1,
            "filename": "cycpd-0.28-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "15f5be420270992ac9f4e341c60e9554",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 645000,
            "upload_time": "2024-03-25T04:13:24",
            "upload_time_iso_8601": "2024-03-25T04:13:24.782036Z",
            "url": "https://files.pythonhosted.org/packages/f8/08/f22efe5cabad172673809e62c3e17b9ab0d3f0c997e0c32aa60eec2a6c9b/cycpd-0.28-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9524427fe9854763a64d9c90d59002a1f581549f99d0c297f3d3ad17bda96747",
                "md5": "4d60e0abcd75249248afe01e6b52027f",
                "sha256": "737103cce2c11f21cfc9d6135a8424f355e611f2827b3ecf7921794444c743ac"
            },
            "downloads": -1,
            "filename": "cycpd-0.28-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4d60e0abcd75249248afe01e6b52027f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 104030,
            "upload_time": "2024-03-25T04:13:27",
            "upload_time_iso_8601": "2024-03-25T04:13:27.095633Z",
            "url": "https://files.pythonhosted.org/packages/95/24/427fe9854763a64d9c90d59002a1f581549f99d0c297f3d3ad17bda96747/cycpd-0.28-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d855b00a3aa56247262991c04de268bebc9287fa60fac4c19f930fb2f31764ef",
                "md5": "aa34dcbe134b5b702d3edad3b9850252",
                "sha256": "848393dca00c8f05f4c5d6fe1096f77187dc9c4f5a2ec1a29a1ce05205e09e22"
            },
            "downloads": -1,
            "filename": "cycpd-0.28-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "aa34dcbe134b5b702d3edad3b9850252",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 214231,
            "upload_time": "2024-03-25T04:13:28",
            "upload_time_iso_8601": "2024-03-25T04:13:28.079833Z",
            "url": "https://files.pythonhosted.org/packages/d8/55/b00a3aa56247262991c04de268bebc9287fa60fac4c19f930fb2f31764ef/cycpd-0.28-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c7abe635c308af44c0ba75811b051dec872310f9b1e5bd23b657c6869d48b40",
                "md5": "aa6b7ecfca2c10c8cafb398f1387d85b",
                "sha256": "2c180ab639140b7cc6aec61aed526b210c87fbe27e3651f1dc79ab60af0f34f7"
            },
            "downloads": -1,
            "filename": "cycpd-0.28-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aa6b7ecfca2c10c8cafb398f1387d85b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 116481,
            "upload_time": "2024-03-25T04:13:29",
            "upload_time_iso_8601": "2024-03-25T04:13:29.577548Z",
            "url": "https://files.pythonhosted.org/packages/4c/7a/be635c308af44c0ba75811b051dec872310f9b1e5bd23b657c6869d48b40/cycpd-0.28-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f0a63d269ff2598abdf033420578c88faf5f5310e9ca866d7e9f5236de14f4e",
                "md5": "4ec7897499a758e55ee3ed38173a55d9",
                "sha256": "6942ebc0b818904b4e240d687bb99a69f6aa33ed5a8d3508d21e392ee94432d1"
            },
            "downloads": -1,
            "filename": "cycpd-0.28-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4ec7897499a758e55ee3ed38173a55d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 689888,
            "upload_time": "2024-03-25T04:13:30",
            "upload_time_iso_8601": "2024-03-25T04:13:30.706779Z",
            "url": "https://files.pythonhosted.org/packages/8f/0a/63d269ff2598abdf033420578c88faf5f5310e9ca866d7e9f5236de14f4e/cycpd-0.28-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2ccb21f6eecc6fa1cba434d2abf7dcb898fb78d259e579d49e528cb5a9f2eef",
                "md5": "fbc8e4da709d80a837c1b2163ae42ca4",
                "sha256": "bd0fcc7c1edebee75b21bc63696eee8cb1ecb3f88e6c85e37a3ba1be7d68ed96"
            },
            "downloads": -1,
            "filename": "cycpd-0.28-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fbc8e4da709d80a837c1b2163ae42ca4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 104485,
            "upload_time": "2024-03-25T04:13:32",
            "upload_time_iso_8601": "2024-03-25T04:13:32.455162Z",
            "url": "https://files.pythonhosted.org/packages/d2/cc/b21f6eecc6fa1cba434d2abf7dcb898fb78d259e579d49e528cb5a9f2eef/cycpd-0.28-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1baab45ed3543ee52a2fd7b58f0c741e32364b6fb6b130d56cd4d5c5fdcfe0b",
                "md5": "8ada27eb0e122620362314bf51d3d670",
                "sha256": "41c710599c76385ad1d211a463b81ca06986013daa595335d498359c5516b0aa"
            },
            "downloads": -1,
            "filename": "cycpd-0.28-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "8ada27eb0e122620362314bf51d3d670",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 219272,
            "upload_time": "2024-03-25T04:13:33",
            "upload_time_iso_8601": "2024-03-25T04:13:33.870401Z",
            "url": "https://files.pythonhosted.org/packages/c1/ba/ab45ed3543ee52a2fd7b58f0c741e32364b6fb6b130d56cd4d5c5fdcfe0b/cycpd-0.28-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b642ea3a109c8ff9df49f4d1e88ccbf467628871aa821cdc80fd5b5a54d197da",
                "md5": "811630542d5216c79f6d5b6d2257f837",
                "sha256": "ec621a73b159c6de64e7c994fb68788ef2bcc3dd2ed7111f2657eb21f3f98510"
            },
            "downloads": -1,
            "filename": "cycpd-0.28-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "811630542d5216c79f6d5b6d2257f837",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 122215,
            "upload_time": "2024-03-25T04:13:35",
            "upload_time_iso_8601": "2024-03-25T04:13:35.452684Z",
            "url": "https://files.pythonhosted.org/packages/b6/42/ea3a109c8ff9df49f4d1e88ccbf467628871aa821cdc80fd5b5a54d197da/cycpd-0.28-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b63128fb1e3371b71f73644b9d979486c3d7ce9aacb1813384b23734e316d732",
                "md5": "f01d31c0e75b5f00bacd606f579f5662",
                "sha256": "25032913614d53ab4f14e9d9c5184358fa65f3ccc357f8147f277ce2706879ff"
            },
            "downloads": -1,
            "filename": "cycpd-0.28-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f01d31c0e75b5f00bacd606f579f5662",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 680087,
            "upload_time": "2024-03-25T04:13:36",
            "upload_time_iso_8601": "2024-03-25T04:13:36.436383Z",
            "url": "https://files.pythonhosted.org/packages/b6/31/28fb1e3371b71f73644b9d979486c3d7ce9aacb1813384b23734e316d732/cycpd-0.28-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1bb98e027cfb6d56cefcdf388ff88ca7a398b64b8ccfad839de1a28ec0d4ea04",
                "md5": "49fe08fa393221f77f43775a01fd6f9e",
                "sha256": "719c0b6ba92e7e65f49400dd499fee7997d4da1dcb823401dd4d983a0fd42f81"
            },
            "downloads": -1,
            "filename": "cycpd-0.28-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "49fe08fa393221f77f43775a01fd6f9e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 104125,
            "upload_time": "2024-03-25T04:13:38",
            "upload_time_iso_8601": "2024-03-25T04:13:38.177637Z",
            "url": "https://files.pythonhosted.org/packages/1b/b9/8e027cfb6d56cefcdf388ff88ca7a398b64b8ccfad839de1a28ec0d4ea04/cycpd-0.28-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec52f5b9dbf9302c5818b372fd47b12caf59ecd853754362d1d75ae71d9346d6",
                "md5": "1d2d79b449f20191b746b339634fab39",
                "sha256": "2e007fb6b6dc2d41e9c3568cae05279f6aa5820c0819cae622424647778d62f4"
            },
            "downloads": -1,
            "filename": "cycpd-0.28-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1d2d79b449f20191b746b339634fab39",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 114447,
            "upload_time": "2024-03-25T04:13:39",
            "upload_time_iso_8601": "2024-03-25T04:13:39.670259Z",
            "url": "https://files.pythonhosted.org/packages/ec/52/f5b9dbf9302c5818b372fd47b12caf59ecd853754362d1d75ae71d9346d6/cycpd-0.28-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c2a9e44405455c65a22dc186c1a150623063180701e2f311923d10f42535de3",
                "md5": "002c6119a0b2482240bf8717c364c24f",
                "sha256": "bb0dff07c14ce7963b0569e8f89ceb7e68517d9d59a91be26b9aad343a2ebe5d"
            },
            "downloads": -1,
            "filename": "cycpd-0.28-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "002c6119a0b2482240bf8717c364c24f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 586029,
            "upload_time": "2024-03-25T04:13:40",
            "upload_time_iso_8601": "2024-03-25T04:13:40.789274Z",
            "url": "https://files.pythonhosted.org/packages/9c/2a/9e44405455c65a22dc186c1a150623063180701e2f311923d10f42535de3/cycpd-0.28-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "692d46a28919a5d84e8f8b5fca850d2ee5f0693bd5ca759fb757692a9cda4df5",
                "md5": "1792a9d46863fd3ef4270f1f0c8d43ea",
                "sha256": "09381c0fcfcde108f54cd843426e1658e13130e7dc5e97c2b9c65043a7246a2e"
            },
            "downloads": -1,
            "filename": "cycpd-0.28-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1792a9d46863fd3ef4270f1f0c8d43ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 103360,
            "upload_time": "2024-03-25T04:13:42",
            "upload_time_iso_8601": "2024-03-25T04:13:42.065863Z",
            "url": "https://files.pythonhosted.org/packages/69/2d/46a28919a5d84e8f8b5fca850d2ee5f0693bd5ca759fb757692a9cda4df5/cycpd-0.28-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "84a68f32ef085941508f6e5e9791c5617e8c2943d5a059edc3a3831eb2a322c8",
                "md5": "b226bd1127b5c4335fe8f7f5de64862b",
                "sha256": "63c89090272982c5a42c22296686ea6ece0558561b3e1c6dc08d96ac44aeb73f"
            },
            "downloads": -1,
            "filename": "cycpd-0.28-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "b226bd1127b5c4335fe8f7f5de64862b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 213965,
            "upload_time": "2024-03-25T04:13:43",
            "upload_time_iso_8601": "2024-03-25T04:13:43.012482Z",
            "url": "https://files.pythonhosted.org/packages/84/a6/8f32ef085941508f6e5e9791c5617e8c2943d5a059edc3a3831eb2a322c8/cycpd-0.28-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "607b54baa35ffc1859c31b1612e442e00aade5d62b457a826d5302a69fd8554b",
                "md5": "a35f0ce9737ed310748324c68f9a0b8d",
                "sha256": "1cf17ddddd5daf4d8bda05751b25570e7decca0435ad99eb60dcd084ed9194ec"
            },
            "downloads": -1,
            "filename": "cycpd-0.28-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a35f0ce9737ed310748324c68f9a0b8d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 116395,
            "upload_time": "2024-03-25T04:13:44",
            "upload_time_iso_8601": "2024-03-25T04:13:44.012684Z",
            "url": "https://files.pythonhosted.org/packages/60/7b/54baa35ffc1859c31b1612e442e00aade5d62b457a826d5302a69fd8554b/cycpd-0.28-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c65571bf689942c61d8c6182468a659a7adfbedc7a2b340ee1d318daf998097",
                "md5": "20b99ed8b75814957153d3fd11475da9",
                "sha256": "f84a3c4648cdb729626549d409da50a28c1b1b7f3e489f24d560a2f5aae57874"
            },
            "downloads": -1,
            "filename": "cycpd-0.28-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "20b99ed8b75814957153d3fd11475da9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 665009,
            "upload_time": "2024-03-25T04:13:45",
            "upload_time_iso_8601": "2024-03-25T04:13:45.635079Z",
            "url": "https://files.pythonhosted.org/packages/7c/65/571bf689942c61d8c6182468a659a7adfbedc7a2b340ee1d318daf998097/cycpd-0.28-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7318ad902c8f8da7c2f165ba3ee5efa24b157a794aa371c11998eb9f8a01b6ec",
                "md5": "096d30eedd9c052dc21c8804a696f872",
                "sha256": "14ef9371c06349c94802f53aef4479552665fa68c068cd0c723ae7fdb4368ce9"
            },
            "downloads": -1,
            "filename": "cycpd-0.28-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "096d30eedd9c052dc21c8804a696f872",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 104710,
            "upload_time": "2024-03-25T04:13:47",
            "upload_time_iso_8601": "2024-03-25T04:13:47.505517Z",
            "url": "https://files.pythonhosted.org/packages/73/18/ad902c8f8da7c2f165ba3ee5efa24b157a794aa371c11998eb9f8a01b6ec/cycpd-0.28-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d499c06fdc94ce4b04c2e6775d769c8ad187222b5791cd1cecf614c074b9690a",
                "md5": "2fbc48e9454ce2c15d66582adff9ac7c",
                "sha256": "b063fab3a3f2a139751e757d2243f0298d7ec8cd8c78489d50c63f072d36975e"
            },
            "downloads": -1,
            "filename": "cycpd-0.28-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "2fbc48e9454ce2c15d66582adff9ac7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 215220,
            "upload_time": "2024-03-25T04:13:49",
            "upload_time_iso_8601": "2024-03-25T04:13:49.147876Z",
            "url": "https://files.pythonhosted.org/packages/d4/99/c06fdc94ce4b04c2e6775d769c8ad187222b5791cd1cecf614c074b9690a/cycpd-0.28-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "abc5af52abe79ea2217bdaa8dde40660f08aee3800fdd45c309dc1b711210862",
                "md5": "27fc14cf585714462c459a5f69f37085",
                "sha256": "36ffc0031a893a847ab30c365135628211fe9df8dbff74d13844424482ba7afd"
            },
            "downloads": -1,
            "filename": "cycpd-0.28-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "27fc14cf585714462c459a5f69f37085",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 116947,
            "upload_time": "2024-03-25T04:13:50",
            "upload_time_iso_8601": "2024-03-25T04:13:50.204448Z",
            "url": "https://files.pythonhosted.org/packages/ab/c5/af52abe79ea2217bdaa8dde40660f08aee3800fdd45c309dc1b711210862/cycpd-0.28-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe74af751343aa72d3726cf23f382e5d2be4c4820f1811eb3f83de869f9e53ca",
                "md5": "8f94a83d86e13bcd23bbe50691faf259",
                "sha256": "dde2935926d086388a54d3f0ce4beb83668f6b665c73be65cab19720da16058d"
            },
            "downloads": -1,
            "filename": "cycpd-0.28-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f94a83d86e13bcd23bbe50691faf259",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 646970,
            "upload_time": "2024-03-25T04:13:51",
            "upload_time_iso_8601": "2024-03-25T04:13:51.757575Z",
            "url": "https://files.pythonhosted.org/packages/fe/74/af751343aa72d3726cf23f382e5d2be4c4820f1811eb3f83de869f9e53ca/cycpd-0.28-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "451a544546ad22b24d2306f1b9acb849ebb42db6abb6f7bb997c1edbf1c2dd2b",
                "md5": "5eccd674292acced30ee89f9a11a2065",
                "sha256": "7f0d02cadf6bf085bfa5386e7199674c3bcc1b4475713c1519ba11e440f36cf9"
            },
            "downloads": -1,
            "filename": "cycpd-0.28-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5eccd674292acced30ee89f9a11a2065",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 104633,
            "upload_time": "2024-03-25T04:13:53",
            "upload_time_iso_8601": "2024-03-25T04:13:53.689062Z",
            "url": "https://files.pythonhosted.org/packages/45/1a/544546ad22b24d2306f1b9acb849ebb42db6abb6f7bb997c1edbf1c2dd2b/cycpd-0.28-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dab47b8332ceaba05671f78ff0326d35e675c4bba6fd5d682cd0db96599479b3",
                "md5": "8be8b44fa9face25c76d85198c21ecc1",
                "sha256": "aa42fc1bee5dcbb46238718f02b47abbc62a481b2d06edcad9144b5eb52aaff9"
            },
            "downloads": -1,
            "filename": "cycpd-0.28.tar.gz",
            "has_sig": false,
            "md5_digest": "8be8b44fa9face25c76d85198c21ecc1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 7981432,
            "upload_time": "2024-03-25T04:13:55",
            "upload_time_iso_8601": "2024-03-25T04:13:55.651916Z",
            "url": "https://files.pythonhosted.org/packages/da/b4/7b8332ceaba05671f78ff0326d35e675c4bba6fd5d682cd0db96599479b3/cycpd-0.28.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-25 04:13:55",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "gattia",
    "github_project": "cycpd",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "numpy",
            "specs": []
        },
        {
            "name": "Cython",
            "specs": [
                [
                    ">=",
                    "0.29"
                ]
            ]
        }
    ],
    "lcname": "cycpd"
}
        
Elapsed time: 0.20926s