.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples/06_manipulating_images/plot_negate_image.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note Click :ref:`here ` to download the full example code or to run this example in your browser via Binder .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_examples_06_manipulating_images_plot_negate_image.py: Negating an image with math_img =============================== The goal of this example is to illustrate the use of the function :func:`nilearn.image.math_img` on T-maps. We compute a negative image by multiplying its voxel values with -1. .. GENERATED FROM PYTHON SOURCE LINES 9-12 .. code-block:: default from nilearn import datasets, plotting, image .. GENERATED FROM PYTHON SOURCE LINES 13-14 Retrieve the data: the localizer dataset with contrast maps. .. GENERATED FROM PYTHON SOURCE LINES 14-17 .. code-block:: default motor_images = datasets.fetch_neurovault_motor_task() stat_img = motor_images.images[0] .. GENERATED FROM PYTHON SOURCE LINES 18-19 Multiply voxel values by -1. .. GENERATED FROM PYTHON SOURCE LINES 19-30 .. code-block:: default negative_stat_img = image.math_img("-img", img=stat_img) plotting.plot_stat_map(stat_img, cut_coords=(36, -27, 66), threshold=3, title="t-map", vmax=9 ) plotting.plot_stat_map(negative_stat_img, cut_coords=(36, -27, 66), threshold=3, title="Negative t-map", vmax=9 ) plotting.show() .. rst-class:: sphx-glr-horizontal * .. image-sg:: /auto_examples/06_manipulating_images/images/sphx_glr_plot_negate_image_001.png :alt: plot negate image :srcset: /auto_examples/06_manipulating_images/images/sphx_glr_plot_negate_image_001.png :class: sphx-glr-multi-img * .. image-sg:: /auto_examples/06_manipulating_images/images/sphx_glr_plot_negate_image_002.png :alt: plot negate image :srcset: /auto_examples/06_manipulating_images/images/sphx_glr_plot_negate_image_002.png :class: sphx-glr-multi-img .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 5.882 seconds) **Estimated memory usage:** 9 MB .. _sphx_glr_download_auto_examples_06_manipulating_images_plot_negate_image.py: .. only :: html .. container:: sphx-glr-footer :class: sphx-glr-footer-example .. container:: binder-badge .. image:: images/binder_badge_logo.svg :target: https://mybinder.org/v2/gh/nilearn/nilearn.github.io/main?filepath=examples/auto_examples/06_manipulating_images/plot_negate_image.ipynb :alt: Launch binder :width: 150 px .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_negate_image.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_negate_image.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_