icepy4d


Nameicepy4d JSON
Version 1.6.2 PyPI version JSON
download
home_page
Summary4D Image-based Continuos monitoring of glaciers Evolution with low-cost stereo-cameras and Deep Learning photogrammetry.
upload_time2023-04-25 16:22:13
maintainer
docs_urlNone
author
requires_python>=3.8
licenseBSD 3-Clause License Copyright (c) 2018, the respective contributors, as shown by the AUTHORS file. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
keywords sfm 4d-reconstruction glaciers deep-learning
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Welcome to ICEpy4D

4D Image-based Continuos monitoring of glaciers' Evolution with low-cost stereo-cameras and Deep Learning photogrammetry.

`ICEpy4D` is a under active development.

## Requirements

- 64-bit Python `>= 3.8` but `< 3.10`
- a NVIDIA graphic card with CUDA capability is strongly reccomended.

## Installation guide

Create a new Anaconda environment

```bash
conda create -n icepy4d python=3.9
conda activate icepy4d
```

Install Icepy4D from PyPi repository

```bash
pip install icepy4d
```

or install it from source by cloning the repository and installing it with `pip`

```bash
git clone https://github.com/franioli/icepy4d.git
cd icepy4d
pip install -e .
```

In case of any error when installing `ICEpy4D` from PyPi, try to install it from source.

Install Metashape Python API for Bundle Adjustment and Dense reconstruction.
Metashape Python API can be downloaded from [https://www.agisoft.com/downloads/installer/](https://www.agisoft.com/downloads/installer/) or use `wget` (under Linux).

```bash
wget https://s3-eu-west-1.amazonaws.com/download.agisoft.com/Metashape-1.8.5-cp35.cp36.cp37.cp38-abi3-linux_x86_64.whl
pip install Metashape-1.8.5-cp35.cp36.cp37.cp38-abi3-linux_x86_64.whl
```

You need to have a valid Metashape license to use the API and you need to activate it (see [https://github.com/franioli/metashape](https://github.com/franioli/metashape) for how to do it)

Try to import ICEpy4D package

```bash
conda activate icepy4d
python -c "import icepy4d"
```

If no error is given, ICEpy4D is successfully installed and it can be imported within your script with `import icepy4d`

### For contributing

Install additional requirements for development:

```bash
pip install -r requirements-dev.txt
pre-commit install
```

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "icepy4d",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "sfm,4d-reconstruction,glaciers,deep-learning",
    "author": "",
    "author_email": "Francesco Ioli <francesco.ioli@polimi.it>",
    "download_url": "https://files.pythonhosted.org/packages/64/94/08000c89c299b2c673d35b01a36125218a035f5aadcc4da6423b8d825d8d/icepy4d-1.6.2.tar.gz",
    "platform": null,
    "description": "# Welcome to ICEpy4D\n\n4D Image-based Continuos monitoring of glaciers' Evolution with low-cost stereo-cameras and Deep Learning photogrammetry.\n\n`ICEpy4D` is a under active development.\n\n## Requirements\n\n- 64-bit Python `>= 3.8` but `< 3.10`\n- a NVIDIA graphic card with CUDA capability is strongly reccomended.\n\n## Installation guide\n\nCreate a new Anaconda environment\n\n```bash\nconda create -n icepy4d python=3.9\nconda activate icepy4d\n```\n\nInstall Icepy4D from PyPi repository\n\n```bash\npip install icepy4d\n```\n\nor install it from source by cloning the repository and installing it with `pip`\n\n```bash\ngit clone https://github.com/franioli/icepy4d.git\ncd icepy4d\npip install -e .\n```\n\nIn case of any error when installing `ICEpy4D` from PyPi, try to install it from source.\n\nInstall Metashape Python API for Bundle Adjustment and Dense reconstruction.\nMetashape Python API can be downloaded from [https://www.agisoft.com/downloads/installer/](https://www.agisoft.com/downloads/installer/) or use `wget` (under Linux).\n\n```bash\nwget https://s3-eu-west-1.amazonaws.com/download.agisoft.com/Metashape-1.8.5-cp35.cp36.cp37.cp38-abi3-linux_x86_64.whl\npip install Metashape-1.8.5-cp35.cp36.cp37.cp38-abi3-linux_x86_64.whl\n```\n\nYou need to have a valid Metashape license to use the API and you need to activate it (see [https://github.com/franioli/metashape](https://github.com/franioli/metashape) for how to do it)\n\nTry to import ICEpy4D package\n\n```bash\nconda activate icepy4d\npython -c \"import icepy4d\"\n```\n\nIf no error is given, ICEpy4D is successfully installed and it can be imported within your script with `import icepy4d`\n\n### For contributing\n\nInstall additional requirements for development:\n\n```bash\npip install -r requirements-dev.txt\npre-commit install\n```\n",
    "bugtrack_url": null,
    "license": "BSD 3-Clause License  Copyright (c) 2018, the respective contributors, as shown by the AUTHORS file. All rights reserved.  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:  * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.  * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.  * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ",
    "summary": "4D Image-based Continuos monitoring of glaciers Evolution with low-cost stereo-cameras and Deep Learning photogrammetry.",
    "version": "1.6.2",
    "split_keywords": [
        "sfm",
        "4d-reconstruction",
        "glaciers",
        "deep-learning"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "293fe6ddc96d01917bc6de4e94a46281f4d70669af38f61cae55b6490364e9e7",
                "md5": "0fd289ce5247d64c93a9821ac2a4bf2c",
                "sha256": "7df71cc83444edc3032e8d197ed435cd9bb1fac12cf0d04bc58bf318d16be263"
            },
            "downloads": -1,
            "filename": "icepy4d-1.6.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0fd289ce5247d64c93a9821ac2a4bf2c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 271947,
            "upload_time": "2023-04-25T16:22:11",
            "upload_time_iso_8601": "2023-04-25T16:22:11.363030Z",
            "url": "https://files.pythonhosted.org/packages/29/3f/e6ddc96d01917bc6de4e94a46281f4d70669af38f61cae55b6490364e9e7/icepy4d-1.6.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "649408000c89c299b2c673d35b01a36125218a035f5aadcc4da6423b8d825d8d",
                "md5": "3f4a97d658996d18f6ebd857c585490d",
                "sha256": "81a2fdad7fbdd0f8aa7158003620542af7ce5d7440aab6116570e21b9a841f01"
            },
            "downloads": -1,
            "filename": "icepy4d-1.6.2.tar.gz",
            "has_sig": false,
            "md5_digest": "3f4a97d658996d18f6ebd857c585490d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 200831,
            "upload_time": "2023-04-25T16:22:13",
            "upload_time_iso_8601": "2023-04-25T16:22:13.504929Z",
            "url": "https://files.pythonhosted.org/packages/64/94/08000c89c299b2c673d35b01a36125218a035f5aadcc4da6423b8d825d8d/icepy4d-1.6.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-25 16:22:13",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "icepy4d"
}
        
Elapsed time: 0.05884s