itk-viewer-bootstrap-ui
Version:
[](https://badge.fury.io/js/itk-viewer-bootstrap-ui)  [ • 3.64 kB
Markdown
# Examples
The intent of these examples is to show how the visualization itkwidgets visualization tools can provide you with insights into image processing, statistical analysis.
You can follow along with the instructions given below in the App tab.
All sections below use the Python Scientific Computing stack.
To get started, you can call `piplite.install(<package-name>)`, which downloads and installs packages from [Pypi](https://pypi.org/).
Note: You have to wait for a little while to get the packages installed before proceding to the next cell on your notebook.
<a href="../../_static/lab/index.html">
Try running the examples below interactively using JupyterLite!

</a>
For more information on how Jupyter lite works, please visit [JupyterLite documentation website](https://jupyterlite.readthedocs.io/en/latest/).
## Gaussian distribution with NumPy
NumPy is a Python library for multidimensional array containers with vector operations.
```
import numpy as np
from itkwidgets import view
number_of_points = 3000
gaussian_mean = [0.0, 0.0, 0.0]
gaussian_cov = [[1.0, 0.0, 0.0], [0.0, 2.0, 0.0], [0.0, 0.0, 0.5]]
point_set = np.random.multivariate_normal(gaussian_mean, gaussian_cov, number_of_points)
view(point_sets=point_set)
```
It is important to indicate the input file is `point_sets`, so itkwidgets recognizes it as a point cloud rather than an image.
<img src="gaussian.png" alt="input">
## Binary Closing with SciPy
SciPy is a Python library that offers computational routines for technical and scientific computing. It offers modules for linear algebra, integration, interpolation, ODE solvers, optimization, etc.
In this example, we explore the `ndimage.binary_closing` which performs closing, a mathematical morphology operation. It shows that closing can close small holes and that closing is the erosion of the dilation of the input.
| Input | Output 1 | Output 2 |
| ---------- | ------------ | ------------ |
|<img src="binary_closing_input.png" alt="input" width="200px">|<img src="binary_closing_output1.png" alt="output1" width="200px">|<img src="binary_closing_output2.png" alt="output2" width="200px">|
See the original example [here](https://docs.scipy.org/doc/scipy/reference/generated/scipy.ndimage.binary_closing.html).
## Estimating Missing Data with Pandas and NumPy
Pandas is a Python library that offers data structures and operations for manipulating data types and data series.
| Input | Output |
| ---------- | ----------- |
|<img src="missing_data_input.png" alt="input" width="300px">|<img src="missing_data_output.png" alt="output" width="300px">|
## PCA with Scikit-Learn
<img src="scikit_pca.png" alt="input">
See the original example [here](https://scikit-learn.org/stable/auto_examples/decomposition/plot_pca_iris.html)
## Visualizing Scientific Images with SciKit-Image
:::{figure-md} shepp_logan_phantom
:class: myclass
<img src="skimage_shepp_logan_phantom.png" alt="shepp_logan_phantom" class="center" width="300px">
Shepp–Logan phantom
:::
:::{figure-md} cell
:class: myclass
<img src="skimage_cell.png" alt="cell" width="300px">
Cell
:::
:::{figure-md} microaneurysms
:class: myclass
<img src="skimage_microaneurysms.png" alt="microaneurysms" width="300px">
Microaneurysms
:::
:::{figure-md} immunohistochemistry
:class: myclass
<img src="skimage_immunohistochemistry.png" alt="immunohistochemistry" width="300px">
Immunohistochemistry
:::
:::{figure-md} moon
:class: myclass
<img src="skimage_moon.png" alt="moon" width="300px">
Moon
:::