.. only:: html
.. note::
:class: sphx-glr-download-link-note
Click :ref:`here ` to download the full example code
.. rst-class:: sphx-glr-example-title
.. _sphx_glr_auto_examples_plot_anat.py:
Anatomical scan viewer
======================
Generate a brainsprite viewer for an anatomical MRI scan, by populating an html
template.
We first download an anatomical scan through one of nilearn's fetcher:
.. code-block:: default
from nilearn import datasets
# one anatomical scan from the haxby dataset
haxby_dataset = datasets.fetch_haxby()
haxby_anat_filename = haxby_dataset.anat[0]
.. rst-class:: sphx-glr-script-out
Out:
.. code-block:: none
Dataset created in /home/circleci/nilearn_data/haxby2001
Downloading data from https://www.nitrc.org/frs/download.php/7868/mask.nii.gz ...
Downloaded 2969 of 2969 bytes (100.0%, 0.0s remaining) ...done. (1 seconds, 0 min)
Downloading data from http://data.pymvpa.org/datasets/haxby2001/MD5SUMS ...
Downloaded 408 of 408 bytes (100.0%, 0.0s remaining) ...done. (0 seconds, 0 min)
Downloading data from http://data.pymvpa.org/datasets/haxby2001/subj2-2010.01.14.tar.gz ...
Downloaded 80830464 of 291168628 bytes (27.8%, 2.6s remaining)
Downloaded 171335680 of 291168628 bytes (58.8%, 1.4s remaining)
Downloaded 261513216 of 291168628 bytes (89.8%, 0.3s remaining)
Downloaded 291168628 of 291168628 bytes (100.0%, 0.0s remaining) ...done. (3 seconds, 0 min)
Extracting data from /home/circleci/nilearn_data/haxby2001/def37a305edfda829916fa14c9ea08f8/subj2-2010.01.14.tar.gz..... done.
Now let's have a look at a generic html template, and focus on the parts that need
to be filled in:
.. literalinclude:: ../_static/viewer_template.html
:language: html
:emphasize-lines: 5-8,12-15,22-25
:linenos:
The parts with :code:`{{ }}` are part of the tempita language, and means that
we need to populate these parts with three types of brainsprite code: an html
snippet, a javascript snippet, and the brainsprite.js library itself. Let's use
:code:`viewer_substitute` to generate the necessary code, and substitute this
code in the template. In terms of the parameters, the defaults are set for a
functional map, and we will need to specify a few arguments to get the right
aspect:
* use a gray colormap (:code:`cmap`),
* do not to a symmetric colormap, centered around zero (:code:`symmetric_cmap`)
* pick colors matching a black background (:code:`black_bg`)
* set the maximum value displayed in the image to increase contrast (:code:`vmax`)
* add a title to the viewer (:code:`title`)
.. code-block:: default
from brainsprite import viewer_substitute
bsprite = viewer_substitute(cmap='gray', symmetric_cmap=False, black_bg=True,
threshold=None, vmax=250, title="anatomical scan", value=False)
bsprite.fit(haxby_anat_filename)
.. rst-class:: sphx-glr-script-out
Out:
.. code-block:: none
/home/circleci/.local/lib/python3.8/site-packages/nilearn/image/resampling.py:513: UserWarning: Casting data from int32 to float32
warnings.warn("Casting data from %s to %s" % (data.dtype.name, aux))
We can now open the template with tempita, and fill it with the required
information. The parameters indicate which tempita names we used in the
template for the javascript, html and library code, respectively.
.. code-block:: default
import tempita
file_template = '../docs/source/_static/viewer_template.html'
template = tempita.Template.from_filename(file_template, encoding="utf-8")
viewer = bsprite.transform(template, javascript='js', html='html', library='bsprite')
The object :code:`viewer` can be called directly to insert the viewer inside
a jupyter notebook:
.. code-block:: default
viewer
.. only:: builder_html
.. raw:: html
The following instruction can be used to save the viewer in a stand-alone,
html document:
.. code-block:: default
viewer.save_as_html('plot_anat.html')
It is possible to include this html page as an iframe in
another html document, using the following snippet.
.. code-block:: html
Note that the style of the iframe may need to be modified in
order to, e.g. center the iframe in the page.
This is better done through css, but here is an example of
in-line html styling with centering and adapting the size of the iframe to
the size of the image (the width and height of the viewer can be found in
:code:`bsprite.width_` and :code:`bsprite.height_`, respectively):
.. code-block:: html
The templating approach presented here is generic, and allows to insert one
or multiple viewers in any html document template.
.. rst-class:: sphx-glr-timing
**Total running time of the script:** ( 0 minutes 8.892 seconds)
.. _sphx_glr_download_auto_examples_plot_anat.py:
.. only :: html
.. container:: sphx-glr-footer
:class: sphx-glr-footer-example
.. container:: sphx-glr-download sphx-glr-download-python
:download:`Download Python source code: plot_anat.py `
.. container:: sphx-glr-download sphx-glr-download-jupyter
:download:`Download Jupyter notebook: plot_anat.ipynb `
.. only:: html
.. rst-class:: sphx-glr-signature
`Gallery generated by Sphinx-Gallery `_