map : 3D ndarray
The activation map, as a 3D image.
affine : 4x4 ndarray
The affine matrix going from image voxel space to MNI space.
cut_coords: 3-tuple of floats or None :
The MNI coordinates of the point where the cut is performed, in
MNI coordinates and order.
If None is given, the cut point is calculated automaticaly.
anat : 3D ndarray or False, optional
The anatomical image to be used as a background. If None, the
MNI152 T1 1mm template is used. If False, no anat is displayed.
anat_affine : 4x4 ndarray, optional
The affine matrix going from the anatomical image voxel space to
MNI space. This parameter is not used when the default
anatomical is used, but it is compulsory when using an
explicite anatomical image.
figure : integer or matplotlib figure, optional
Matplotlib figure used or its number. If None is given, a
new figure is created.
axes : matplotlib axes or 4 tuple of float: (xmin, xmax, ymin, ymin), optional
The axes, or the coordinates, in matplotlib figure space,
of the axes used to display the plot. If None, the complete
figure is used.
title : string, optional
The title dispayed on the figure.
threshold : a number, None, or ‘auto’
If None is given, the maps are not thresholded.
If a number is given, it is used to threshold the maps:
values below the threshold are plotted as transparent. If
auto is given, the threshold is determined magically by
analysis of the map.
annotate: boolean, optional :
If annotate is True, positions and left/right annotation
are added to the plot.
draw_cross: boolean, optional :
If draw_cross is True, a cross is drawn on the plot to
indicate the cut plosition.
do3d: {True, False or ‘interactive’}, optional :
If True, Mayavi is used to plot a 3D view of the
map in addition to the slicing. If ‘interactive’, the
3D visualization is displayed in an additional interactive
window.
view_3d: tuple, :
The view used to take the screenshot: azimuth, elevation,
distance and focalpoint, see the docstring of mlab.view.
kwargs: extra keyword arguments, optional :
Extra keyword arguments passed to pylab.imshow
|