-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
etienne
committed
Jan 15, 2020
1 parent
cb5600b
commit 0bbe59f
Showing
17 changed files
with
143 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
inpystem.restore.DL_ITKrMM module | ||
=================================== | ||
|
||
.. automodule:: inpystem.restore.DL_ITKrMM_matlab | ||
|
||
The ITKrMM algorithm | ||
-------------------- | ||
|
||
.. autofunction:: inpystem.restore.DL_ITKrMM_matlab.ITKrMM_matlab | ||
|
||
The wKSVD algorithm | ||
------------------- | ||
|
||
.. autofunction:: inpystem.restore.DL_ITKrMM_matlab.wKSVD_matlab | ||
|
||
The dictionary learning interface | ||
--------------------------------- | ||
|
||
.. autoclass:: inpystem.restore.DL_ITKrMM_matlab.Matlab_Dico_Learning_Executer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,66 @@ | ||
Installing inpystem | ||
================= | ||
=================== | ||
|
||
Well, for the moment, please use. | ||
With pip | ||
-------- | ||
|
||
inpystem is listed in the `Python Package Index`_. Therefore, it can be automatically downloaded and installed with pip. You may need to install pip for the following commands to run. | ||
|
||
.. _Python Package Index: https://pypi.org/ | ||
|
||
Install with pip: | ||
|
||
.. code-block:: bash | ||
$ pip install inpystem | ||
Install from source | ||
------------------- | ||
|
||
When installing manually, be sure that all dependences are required. For example, do: | ||
|
||
.. code-block:: bash | ||
$ pip install numpy scipy matplotlib hyperspy scikit-learn scikit-image | ||
Be aware that the scikit-image package versions is above 0.16. | ||
|
||
Released version | ||
~~~~~~~~~~~~~~~~ | ||
|
||
To install from source grab a tar.gz release from `Python Package Index <https://pypi.org/>` and use the following code if Linux/Mac user: | ||
|
||
.. code-block:: bash | ||
$ tar -xzf inpystem.tar.gz | ||
$ cd inpystem | ||
$ python setup.py install | ||
You can also use a Python installer, e.g. | ||
|
||
.. code-block:: bash | ||
$ pip install inpystem.tar.gz | ||
Development version | ||
~~~~~~~~~~~~~~~~~~~ | ||
|
||
To get the development version from our git repository you need to install git. Then just do: | ||
|
||
.. code-block:: bash | ||
pip install git+https://github.com/etienne-monier/inpystem | ||
$ git clone https://github.com/etienne-monier/inpystem | ||
$ cd inpystem | ||
Then, perform one of the following commands: | ||
|
||
.. code-block:: bash | ||
$ pip install -e . | ||
$ python setup.py install | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.