napari-musa 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- napari_musa/Widget_DataManager.py +864 -0
- napari_musa/Widgets_DataVisualization.py +257 -0
- napari_musa/Widgets_EndmembersExtraction.py +382 -0
- napari_musa/Widgets_Fusion.py +458 -0
- napari_musa/Widgets_NMF.py +265 -0
- napari_musa/Widgets_PCA.py +212 -0
- napari_musa/Widgets_UMAP.py +463 -0
- napari_musa/_version.py +34 -0
- napari_musa/main.py +150 -0
- napari_musa/modules/D_illuminants.mat +0 -0
- napari_musa/modules/data.py +48 -0
- napari_musa/modules/functions.py +1331 -0
- napari_musa/modules/plot.py +581 -0
- napari_musa/napari.yaml +15 -0
- napari_musa-1.0.0.dist-info/METADATA +156 -0
- napari_musa-1.0.0.dist-info/RECORD +20 -0
- napari_musa-1.0.0.dist-info/WHEEL +5 -0
- napari_musa-1.0.0.dist-info/entry_points.txt +2 -0
- napari_musa-1.0.0.dist-info/licenses/LICENSE +28 -0
- napari_musa-1.0.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: napari-musa
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: A Napari plugin to perform analysis on Hyperspectral Imaging datasets
|
|
5
|
+
Author: Alessia Di Benedetto
|
|
6
|
+
Author-email: alessia.dibenedetto@polimi.it
|
|
7
|
+
License:
|
|
8
|
+
Copyright (c) 2025, Alessia Di Benedetto
|
|
9
|
+
All rights reserved.
|
|
10
|
+
|
|
11
|
+
Redistribution and use in source and binary forms, with or without
|
|
12
|
+
modification, are permitted provided that the following conditions are met:
|
|
13
|
+
|
|
14
|
+
* Redistributions of source code must retain the above copyright notice, this
|
|
15
|
+
list of conditions and the following disclaimer.
|
|
16
|
+
|
|
17
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
|
18
|
+
this list of conditions and the following disclaimer in the documentation
|
|
19
|
+
and/or other materials provided with the distribution.
|
|
20
|
+
|
|
21
|
+
* Neither the name of copyright holder nor the names of its
|
|
22
|
+
contributors may be used to endorse or promote products derived from
|
|
23
|
+
this software without specific prior written permission.
|
|
24
|
+
|
|
25
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
26
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
27
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
28
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
29
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
30
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
31
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
32
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
33
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
34
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
35
|
+
|
|
36
|
+
Project-URL: Bug Tracker, https://github.com/hyperpolimi/napari-musa/issues
|
|
37
|
+
Project-URL: Documentation, https://github.com/hyperpolimi/napari-musa#README.md
|
|
38
|
+
Project-URL: Source Code, https://github.com/hyperpolimi/napari-musa
|
|
39
|
+
Project-URL: User Support, https://github.com/hyperpolimi/napari-musa/issues
|
|
40
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
41
|
+
Classifier: Framework :: napari
|
|
42
|
+
Classifier: Intended Audience :: Developers
|
|
43
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
44
|
+
Classifier: Operating System :: OS Independent
|
|
45
|
+
Classifier: Programming Language :: Python
|
|
46
|
+
Classifier: Programming Language :: Python :: 3
|
|
47
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
48
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
49
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
50
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
51
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
52
|
+
Classifier: Topic :: Scientific/Engineering :: Image Processing
|
|
53
|
+
Requires-Python: >=3.10
|
|
54
|
+
Description-Content-Type: text/markdown
|
|
55
|
+
License-File: LICENSE
|
|
56
|
+
Requires-Dist: numpy
|
|
57
|
+
Requires-Dist: magicgui
|
|
58
|
+
Requires-Dist: qtpy
|
|
59
|
+
Requires-Dist: scikit-image
|
|
60
|
+
Requires-Dist: scikit-learn
|
|
61
|
+
Requires-Dist: h5py
|
|
62
|
+
Requires-Dist: bokeh
|
|
63
|
+
Requires-Dist: plotly
|
|
64
|
+
Requires-Dist: PyWavelets
|
|
65
|
+
Requires-Dist: scipy
|
|
66
|
+
Requires-Dist: pyqtgraph
|
|
67
|
+
Requires-Dist: qtawesome
|
|
68
|
+
Requires-Dist: matplotlib
|
|
69
|
+
Requires-Dist: umap-learn
|
|
70
|
+
Requires-Dist: spectral
|
|
71
|
+
Requires-Dist: pybaselines
|
|
72
|
+
Requires-Dist: pysptools
|
|
73
|
+
Requires-Dist: pillow
|
|
74
|
+
Provides-Extra: all
|
|
75
|
+
Requires-Dist: napari[all]; extra == "all"
|
|
76
|
+
Dynamic: license-file
|
|
77
|
+
|
|
78
|
+
# napari-musa
|
|
79
|
+
|
|
80
|
+
[](https://github.com/hyperpolimi/napari-musa/raw/main/LICENSE)
|
|
81
|
+
[](https://pypi.org/project/napari-musa)
|
|
82
|
+
[](https://python.org)
|
|
83
|
+
[](https://github.com/hyperpolimi/napari-musa/actions)
|
|
84
|
+
[](https://codecov.io/gh/hyperpolimi/napari-musa)
|
|
85
|
+
[](https://napari-hub.org/plugins/napari-musa)
|
|
86
|
+
[](https://napari.org/stable/plugins/index.html)
|
|
87
|
+
[](https://github.com/copier-org/copier)
|
|
88
|
+
|
|
89
|
+
A Napari plugin to perform analysis on Hyperspectral Imaging datasets
|
|
90
|
+
|
|
91
|
+
----------------------------------
|
|
92
|
+
|
|
93
|
+
This [napari] plugin was generated with [copier] using the [napari-plugin-template] (None).
|
|
94
|
+
|
|
95
|
+
<!--
|
|
96
|
+
Don't miss the full getting started guide to set up your new package:
|
|
97
|
+
https://github.com/napari/napari-plugin-template#getting-started
|
|
98
|
+
|
|
99
|
+
and review the napari docs for plugin developers:
|
|
100
|
+
https://napari.org/stable/plugins/index.html
|
|
101
|
+
-->
|
|
102
|
+
|
|
103
|
+
## Installation
|
|
104
|
+
|
|
105
|
+
You can install `napari-musa` via [pip]:
|
|
106
|
+
|
|
107
|
+
```
|
|
108
|
+
pip install napari-musa
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
If napari is not already installed, you can install `napari-musa` with napari and Qt via:
|
|
112
|
+
|
|
113
|
+
```
|
|
114
|
+
pip install "napari-musa[all]"
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
To install latest development version :
|
|
119
|
+
|
|
120
|
+
```
|
|
121
|
+
pip install git+https://github.com/hyperpolimi/napari-musa.git
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
## Contributing
|
|
127
|
+
|
|
128
|
+
Contributions are very welcome. Tests can be run with [tox], please ensure
|
|
129
|
+
the coverage at least stays the same before you submit a pull request.
|
|
130
|
+
|
|
131
|
+
## License
|
|
132
|
+
|
|
133
|
+
Distributed under the terms of the [BSD-3] license,
|
|
134
|
+
"napari-musa" is free and open source software
|
|
135
|
+
|
|
136
|
+
## Issues
|
|
137
|
+
|
|
138
|
+
If you encounter any problems, please [file an issue] along with a detailed description.
|
|
139
|
+
|
|
140
|
+
[napari]: https://github.com/napari/napari
|
|
141
|
+
[copier]: https://copier.readthedocs.io/en/stable/
|
|
142
|
+
[@napari]: https://github.com/napari
|
|
143
|
+
[MIT]: http://opensource.org/licenses/MIT
|
|
144
|
+
[BSD-3]: http://opensource.org/licenses/BSD-3-Clause
|
|
145
|
+
[GNU GPL v3.0]: http://www.gnu.org/licenses/gpl-3.0.txt
|
|
146
|
+
[GNU LGPL v3.0]: http://www.gnu.org/licenses/lgpl-3.0.txt
|
|
147
|
+
[Apache Software License 2.0]: http://www.apache.org/licenses/LICENSE-2.0
|
|
148
|
+
[Mozilla Public License 2.0]: https://www.mozilla.org/media/MPL/2.0/index.txt
|
|
149
|
+
[napari-plugin-template]: https://github.com/napari/napari-plugin-template
|
|
150
|
+
|
|
151
|
+
[file an issue]: https://github.com/hyperpolimi/napari-musa/issues
|
|
152
|
+
|
|
153
|
+
[napari]: https://github.com/napari/napari
|
|
154
|
+
[tox]: https://tox.readthedocs.io/en/latest/
|
|
155
|
+
[pip]: https://pypi.org/project/pip/
|
|
156
|
+
[PyPI]: https://pypi.org/
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
napari_musa/Widget_DataManager.py,sha256=AsDjwXOFuNK9I6kYE4HcWKKtRpF1eLskefts4yl3rYc,31341
|
|
2
|
+
napari_musa/Widgets_DataVisualization.py,sha256=3DOfpcpYAIUrqaeXZB1o_m3c7lnd5crjdKnKhudBHSM,8761
|
|
3
|
+
napari_musa/Widgets_EndmembersExtraction.py,sha256=Y3WM8wfStlYm4izrX_CxnsJfHW1PNkyLM-EDhEtb6zE,12753
|
|
4
|
+
napari_musa/Widgets_Fusion.py,sha256=CY4dKD-kX3DIoDZptVAy85TLxVGj60D5IQ4bWcVyxOs,17415
|
|
5
|
+
napari_musa/Widgets_NMF.py,sha256=tzf99fbdXApW0scSdxhCWc6dYoK5Bx6Bxxrnrsi9tH0,8018
|
|
6
|
+
napari_musa/Widgets_PCA.py,sha256=ZB_DO53LMOuQ7B8Y6EjszamVDt4zkwJ7xaSBzIpBCSs,6918
|
|
7
|
+
napari_musa/Widgets_UMAP.py,sha256=x3FcZQC858ETOcTmbKc8XTELmEf585iWZuukbnLVyUU,16798
|
|
8
|
+
napari_musa/_version.py,sha256=vLA4ITz09S-S435nq6yTF6l3qiSz6w4euS1rOxXgd1M,704
|
|
9
|
+
napari_musa/main.py,sha256=gPL0aq7ANpIHnwECQUqkVXzP64sSQpwwO_-bS2AEOjk,5189
|
|
10
|
+
napari_musa/napari.yaml,sha256=mwxe_jD73C9Dq2WZzdVeK_ELun5L6_cA56Ts6H0Ljak,499
|
|
11
|
+
napari_musa/modules/D_illuminants.mat,sha256=IO-AQ5lTYhBN80uo0oypOByeSA0pNEaClqBngWWlcBY,4103
|
|
12
|
+
napari_musa/modules/data.py,sha256=7zuBQPvH4lwZ70djGWERJcmuBAK-Wv26XgL8L8itQRU,1275
|
|
13
|
+
napari_musa/modules/functions.py,sha256=K5SMfMtzIhw8qDzD2a7Zl4rYyQxeuKiEM5k2Gftvoq4,41810
|
|
14
|
+
napari_musa/modules/plot.py,sha256=dezX-tjqM1RgGE0M4UzYk-GIlQ571J6dOO6htn6UXbw,20620
|
|
15
|
+
napari_musa-1.0.0.dist-info/licenses/LICENSE,sha256=hnLkUdQOVlkaNySIaaBHMaeEQ6XTDKOhGGqBBf66P-k,1495
|
|
16
|
+
napari_musa-1.0.0.dist-info/METADATA,sha256=qcqTiPHoHPpOjSeNavNpYVBBuKG0S9IKyKkZScsUov4,6558
|
|
17
|
+
napari_musa-1.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
18
|
+
napari_musa-1.0.0.dist-info/entry_points.txt,sha256=o-mArVr1Ap0vnGoSXMZM_ML_KtfIELSeLPQG2r7CHws,56
|
|
19
|
+
napari_musa-1.0.0.dist-info/top_level.txt,sha256=vUnyG8ibYrI_jKdDZ56lvoujAHRSrYjEjWqg9c_7Ebc,12
|
|
20
|
+
napari_musa-1.0.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
|
|
2
|
+
Copyright (c) 2025, Alessia Di Benedetto
|
|
3
|
+
All rights reserved.
|
|
4
|
+
|
|
5
|
+
Redistribution and use in source and binary forms, with or without
|
|
6
|
+
modification, are permitted provided that the following conditions are met:
|
|
7
|
+
|
|
8
|
+
* Redistributions of source code must retain the above copyright notice, this
|
|
9
|
+
list of conditions and the following disclaimer.
|
|
10
|
+
|
|
11
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
|
12
|
+
this list of conditions and the following disclaimer in the documentation
|
|
13
|
+
and/or other materials provided with the distribution.
|
|
14
|
+
|
|
15
|
+
* Neither the name of copyright holder nor the names of its
|
|
16
|
+
contributors may be used to endorse or promote products derived from
|
|
17
|
+
this software without specific prior written permission.
|
|
18
|
+
|
|
19
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
20
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
21
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
22
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
23
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
24
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
25
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
26
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
27
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
28
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
napari_musa
|