Please consider citing the scikit-learn if you use it.
Take masked data and bring them back into 3D/4D
This function can be applied to a list of masked data.
X: numpy.ndarray (or list of) :
Masked data. shape: (samples #, features #). If X is one-dimensional, it is assumed that samples# == 1.
mask_img: nifti-like image :
Mask. Must be 3-dimensional.
data: nifti-like image (or list of) :
Unmasked data. Depending on the shape of X, data can have different shapes: X.ndim == 2: Shape: (mask.shape[0], mask.shape[1], mask.shape[2], X.shape[0]) X.ndim == 1: Shape: (mask.shape[0], mask.shape[1], mask.shape[2])
Unmasked data. Depending on the shape of X, data can have different shapes: