You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/index.rst
+21-7Lines changed: 21 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,27 @@ Sigima
4
4
**Sigima** is an advanced Python library for *scientific image and signal processing*.
5
5
It provides a wide range of functionalities for analyzing and processing data, including signal filtering, image enhancement, and feature extraction. Sigima is based on a simple but effective object-oriented design, making it easy to use and extend.
6
6
7
+
With Sigima, do in 3 lines of code what would normally take dozens of lines:
8
+
9
+
.. code-block:: python
10
+
11
+
import numpy as np
12
+
import sigima.objects
13
+
import sigima.proc.image
14
+
15
+
data = np.random.normal(100, 30, (100, 100)) # Prepare test image data
16
+
17
+
img = sigima.objects.create_image("Noisy", data) # Create the image object
18
+
img.roi = sigima.objects.create_image_roi("circle", [30, 30, 20]) # Define ROI
19
+
result = sigima.proc.image.gaussian_filter(img, sigma=5.0) # Apply Gaussian filter
20
+
21
+
.. figure:: _static/DataLab-Banner.svg
22
+
:align:center
23
+
:width:300 px
24
+
:class:dark-light no-scaled-link
25
+
26
+
Developed and maintained by the DataLab Platform Developers, **Sigima** powers the computation backend of `DataLab <https://www.datalab-platform.com>`_.
27
+
7
28
.. only:: html and not latex
8
29
9
30
.. grid:: 2 2 4 4
@@ -33,13 +54,6 @@ It provides a wide range of functionalities for analyzing and processing data, i
33
54
34
55
Getting involved in the project
35
56
36
-
.. figure:: _static/DataLab-Banner.svg
37
-
:align:center
38
-
:width:300 px
39
-
:class:dark-light no-scaled-link
40
-
41
-
Developed and maintained by the DataLab Platform Developers, **Sigima** powers the computation backend of `DataLab <https://www.datalab-platform.com>`_.
42
-
43
57
Sigima has been funded by the following stakeholders:
Copy file name to clipboardExpand all lines: doc/locale/fr/LC_MESSAGES/index.po
+7-4Lines changed: 7 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -26,11 +26,17 @@ msgstr "Sigima"
26
26
msgid"**Sigima** is an advanced Python library for *scientific image and signal processing*. It provides a wide range of functionalities for analyzing and processing data, including signal filtering, image enhancement, and feature extraction. Sigima is based on a simple but effective object-oriented design, making it easy to use and extend."
27
27
msgstr"**Sigima** est une bibliothèque Python avancée pour le *traitement scientifique des images et des signaux*. Elle offre une large gamme de fonctionnalités pour l'analyse et le traitement des données, y compris le filtrage des signaux, l'amélioration des images et l'extraction de caractéristiques. Sigima est basée sur une conception orientée objet simple mais efficace, ce qui la rend facile à utiliser et à étendre."
28
28
29
+
msgid"With Sigima, do in 3 lines of code what would normally take dozens of lines:"
30
+
msgstr"Avec Sigima, faites en 3 lignes de code ce qui prendrait normalement des dizaines de lignes :"
31
+
32
+
msgid"Developed and maintained by the DataLab Platform Developers, **Sigima** powers the computation backend of `DataLab <https://www.datalab-platform.com>`_."
33
+
msgstr"Développée et maintenue par les développeurs de la plateforme DataLab, **Sigima** alimente le backend de calcul de `DataLab <https://www.datalab-platform.com>`_."
msgid"Developed and maintained by the DataLab Platform Developers, **Sigima** powers the computation backend of `DataLab <https://www.datalab-platform.com>`_."
54
-
msgstr"Développée et maintenue par les développeurs de la plateforme DataLab, **Sigima** alimente le backend de calcul de `DataLab <https://www.datalab-platform.com>`_."
55
-
56
59
msgid"Sigima has been funded by the following stakeholders:"
57
60
msgstr"Sigima a été financée par les parties prenantes suivantes:"
0 commit comments