Note
This page is a reference documentation. It only explains the function signature, and not how to use it. Please refer to the user guide for the big picture.
nilearn.image.threshold_img¶
- nilearn.image.threshold_img(img, threshold, cluster_threshold=0, two_sided=True, mask_img=None, copy=True, copy_header=False)[source]¶
Threshold the given input image, mostly statistical or atlas images.
Thresholding can be done based on direct image intensities or selection threshold with given percentile.
Changed in version 0.9.0: New
cluster_threshold
andtwo_sided
parameters added.Added in version 0.2.
- Parameters:
- imga 3D/4D Niimg-like object
Image containing statistical or atlas maps which should be thresholded.
- threshold
float
orstr
Voxels with intensities less than the requested threshold will be set to zero. Those with intensities greater or equal than the requested threshold will keep their original value. If float, we threshold the image based on image intensities. The given value should be within the range of minimum and maximum intensity of the input image. If string, it should finish with percent sign e.g. “80%” and we threshold based on the score obtained using this percentile on the image data. The given string should be within the range of “0%” to “100%”. The percentile rank is computed using
scipy.stats.scoreatpercentile
.- cluster_threshold
float
, default=0 Cluster size threshold, in voxels. In the returned thresholded map, sets of connected voxels (
clusters
) with size smaller than this number will be removed.Added in version 0.9.0.
- two_sided
bool
, default=True Whether the thresholding should yield both positive and negative part of the maps.
Added in version 0.9.0.
- mask_imgNiimg-like object, default=None
Mask image applied to mask the input data. If None, no masking will be applied.
- copy
bool
, default=True If True, input array is not modified. True by default: the filtering is not performed in-place.
- copy_header
bool
, default=False Whether to copy the header of the input image to the output.
Added in version 0.11.0.
This parameter will be set to True by default in 0.13.0.
- Returns:
Nifti1Image
Thresholded image of the given input image.
See also
nilearn.glm.threshold_stats_img
Threshold a statistical image using the alpha value, optionally with false positive control.
Examples using nilearn.image.threshold_img
¶
Encoding models for visual stimuli from Miyawaki et al. 2008
Statistical testing of a second-level analysis
Region Extraction using a t-statistical map (3D)