empyre


Nameempyre JSON
Version 0.3.3 PyPI version JSON
download
home_pageNone
SummaryElectron Microscopy Python Reconstruction
upload_time2024-06-19 09:20:41
maintainerNone
docs_urlNone
authorNone
requires_python>=3.6
licenseNone
keywords electron microscopy inverse problem solving model-based reconstrution
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            |pipeline|_ |coverage|_ |pypi|_

.. |pipeline| image:: https://iffgit.fz-juelich.de/empyre/empyre/badges/master/pipeline.svg
.. _pipeline: https://iffgit.fz-juelich.de/empyre/empyre/commits/master

.. |coverage| image:: https://iffgit.fz-juelich.de/empyre/empyre/badges/master/coverage.svg
.. _coverage: https://iffgit.fz-juelich.de/empyre/empyre

.. |pypi| image:: https://badge.fury.io/py/empyre.svg
.. _pypi: https://pypi.org/project/empyre/


EMPyRe is an open source framework for constructing and solving hyperdimensional inverse problems and visualizing the corresponding input and output data. it has
its roots in the reconstruction of three-dimensional magnetization distributions from magnetic phase images generated by electron holography but is meant to be
extendable for many other problems that are based on forward models that are expressable as a combination of linear subproblems. EMPyRe is purely Python
package, so all platforms should be supported.


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

EMPyRe is available on the `Python Package Index <http://pypi.python.org/pypi>`_ and can be simply be installed via `pip <http://pypi.python.org/pypi/pip>`_:

.. code-block:: bash

    $ pip install empyre

Per default, only the strictly required libraries are installed, but there are a few additional dependencies that will unlock additional capabilites of EMPYRE.

* ``io`` will install the `tvtk <http://docs.enthought.com/mayavi/tvtk/README.html>`_  & `HyperSpy <https://hyperspy.org/>`_ packages that are used for loading and saving additional file formats.

    .. warning::
        Due to this `issue <https://github.com/hyperspy/hyperspy/issues/2315>`_, a pip install of hyperspy is currently not possible. Please use
        `conda <https://docs.conda.io/en/latest/>`_ to install HyperSpy, instead.


* ``fftw`` will install `PyFFTW <https://github.com/pyFFTW/pyFFTW>`_ to speed up Fourier transforms used in some forward models.

* ``colors`` will install the `cmocean <https://matplotlib.org/cmocean/>`_, whose ``balance`` color map is used as a default for the ``imshow`` commmand, if available.

* ``3d`` will install the `mayavi <https://docs.enthought.com/mayavi/mayavi/>`_ package for 3D plotting capabilities.

* ``tests`` will install all dependencies that are needed to test the package (usually not necessary for the average user).

* ``all`` will install all of the dependencies listed above.


You can choose these settings by using, *e.g.*:

.. code-block:: bash

    $ pip install empyre[all]


Structure
---------

EMPyRe has several dedicated modules which are fully documented `here <https://empyre.iffgit.fz-juelich.de/empyre/>`_!

* The ``fields`` module provides the ``Field`` container class for multidimensional scalar or vector fields and is the fundamental data structure used in EMPyRe.

* The ``vis`` module enables the plotting of ``Field`` objects, based on and similar in syntax to the commonly known `matplotlib <https://matplotlib.org/>`_ framework.

* The ``models`` module provides tools for constructing forward models that describe processes in Electron Microscopy.

* The ``reconstruct`` module is a collection of tools for solving the inverse problems corresponding to the constructed forward models and diagnostic tools for their assessment.

* The ``io`` module is used to load and save ``Field`` objects and the models generated by the ``models`` subpackage.

* The ``utils`` module, which houses utility functionality used throughout EMPyRe.



License
-------
EMPyRe is licensed under `GPLv3 <https://iffgit.fz-juelich.de/empyre/empyre/-/blob/master/LICENSE>`_.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "empyre",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": "Electron Microscopy, Inverse Problem Solving, Model-based Reconstrution",
    "author": null,
    "author_email": "Jan Caron <j.caron@fz-juelich.de>",
    "download_url": "https://files.pythonhosted.org/packages/c4/d2/305d3492102fece0c183e871732632481556eed1179aacf0703c06460854/empyre-0.3.3.tar.gz",
    "platform": null,
    "description": "|pipeline|_ |coverage|_ |pypi|_\n\n.. |pipeline| image:: https://iffgit.fz-juelich.de/empyre/empyre/badges/master/pipeline.svg\n.. _pipeline: https://iffgit.fz-juelich.de/empyre/empyre/commits/master\n\n.. |coverage| image:: https://iffgit.fz-juelich.de/empyre/empyre/badges/master/coverage.svg\n.. _coverage: https://iffgit.fz-juelich.de/empyre/empyre\n\n.. |pypi| image:: https://badge.fury.io/py/empyre.svg\n.. _pypi: https://pypi.org/project/empyre/\n\n\nEMPyRe is an open source framework for constructing and solving hyperdimensional inverse problems and visualizing the corresponding input and output data. it has\nits roots in the reconstruction of three-dimensional magnetization distributions from magnetic phase images generated by electron holography but is meant to be\nextendable for many other problems that are based on forward models that are expressable as a combination of linear subproblems. EMPyRe is purely Python\npackage, so all platforms should be supported.\n\n\nInstallation\n------------\n\nEMPyRe is available on the `Python Package Index <http://pypi.python.org/pypi>`_ and can be simply be installed via `pip <http://pypi.python.org/pypi/pip>`_:\n\n.. code-block:: bash\n\n    $ pip install empyre\n\nPer default, only the strictly required libraries are installed, but there are a few additional dependencies that will unlock additional capabilites of EMPYRE.\n\n* ``io`` will install the `tvtk <http://docs.enthought.com/mayavi/tvtk/README.html>`_  & `HyperSpy <https://hyperspy.org/>`_ packages that are used for loading and saving additional file formats.\n\n    .. warning::\n        Due to this `issue <https://github.com/hyperspy/hyperspy/issues/2315>`_, a pip install of hyperspy is currently not possible. Please use\n        `conda <https://docs.conda.io/en/latest/>`_ to install HyperSpy, instead.\n\n\n* ``fftw`` will install `PyFFTW <https://github.com/pyFFTW/pyFFTW>`_ to speed up Fourier transforms used in some forward models.\n\n* ``colors`` will install the `cmocean <https://matplotlib.org/cmocean/>`_, whose ``balance`` color map is used as a default for the ``imshow`` commmand, if available.\n\n* ``3d`` will install the `mayavi <https://docs.enthought.com/mayavi/mayavi/>`_ package for 3D plotting capabilities.\n\n* ``tests`` will install all dependencies that are needed to test the package (usually not necessary for the average user).\n\n* ``all`` will install all of the dependencies listed above.\n\n\nYou can choose these settings by using, *e.g.*:\n\n.. code-block:: bash\n\n    $ pip install empyre[all]\n\n\nStructure\n---------\n\nEMPyRe has several dedicated modules which are fully documented `here <https://empyre.iffgit.fz-juelich.de/empyre/>`_!\n\n* The ``fields`` module provides the ``Field`` container class for multidimensional scalar or vector fields and is the fundamental data structure used in EMPyRe.\n\n* The ``vis`` module enables the plotting of ``Field`` objects, based on and similar in syntax to the commonly known `matplotlib <https://matplotlib.org/>`_ framework.\n\n* The ``models`` module provides tools for constructing forward models that describe processes in Electron Microscopy.\n\n* The ``reconstruct`` module is a collection of tools for solving the inverse problems corresponding to the constructed forward models and diagnostic tools for their assessment.\n\n* The ``io`` module is used to load and save ``Field`` objects and the models generated by the ``models`` subpackage.\n\n* The ``utils`` module, which houses utility functionality used throughout EMPyRe.\n\n\n\nLicense\n-------\nEMPyRe is licensed under `GPLv3 <https://iffgit.fz-juelich.de/empyre/empyre/-/blob/master/LICENSE>`_.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Electron Microscopy Python Reconstruction",
    "version": "0.3.3",
    "project_urls": {
        "Homepage": "https://iffgit.fz-juelich.de/empyre/empyre"
    },
    "split_keywords": [
        "electron microscopy",
        " inverse problem solving",
        " model-based reconstrution"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1552408cb56bdf6c6adc8d8612b79cc0f29fe25a0ce43e7094580073a81fa05f",
                "md5": "918bbc171e25b5554c1b62c5c7416b34",
                "sha256": "78987a8aa721effbad274b7ac4c146b270c1f22e161d40cc86f17f266e63f20d"
            },
            "downloads": -1,
            "filename": "empyre-0.3.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "918bbc171e25b5554c1b62c5c7416b34",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 75719,
            "upload_time": "2024-06-19T09:20:38",
            "upload_time_iso_8601": "2024-06-19T09:20:38.753964Z",
            "url": "https://files.pythonhosted.org/packages/15/52/408cb56bdf6c6adc8d8612b79cc0f29fe25a0ce43e7094580073a81fa05f/empyre-0.3.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4d2305d3492102fece0c183e871732632481556eed1179aacf0703c06460854",
                "md5": "e7da0d4ae431def49bd84f4205b90a6c",
                "sha256": "89b9c04cc4225ff4f61b25f2ad8aa725f7cc3aaec40f3520ab5351a194121c3e"
            },
            "downloads": -1,
            "filename": "empyre-0.3.3.tar.gz",
            "has_sig": false,
            "md5_digest": "e7da0d4ae431def49bd84f4205b90a6c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 61790,
            "upload_time": "2024-06-19T09:20:41",
            "upload_time_iso_8601": "2024-06-19T09:20:41.266052Z",
            "url": "https://files.pythonhosted.org/packages/c4/d2/305d3492102fece0c183e871732632481556eed1179aacf0703c06460854/empyre-0.3.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-19 09:20:41",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "empyre"
}
        
Elapsed time: 2.53936s