python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How can I create a 3D nibabel image using 2D nibabel images?
I have a lot of 2D nibabel (.nii) slices and I need to create a 3D nibabel (.nii) image from those slices, is there any way to do it?
Mauricésar Barbosa
Votes: 0
Answers: 1
How to get transformation affine from ITK registration?
Given 3D MRI scans A, B, and C I want to perform an affine (co)registration of B onto A, take the transformation affine matrix of the registration and apply it on C.
My problem is that the affine matr...
Spenhouet
Votes: 0
Answers: 2
Memmap AttributeError when trying to access nifti image header
After loading a NIFTI (.nii) image (using Nibabel) with the code scan = nibabel.load(filepath), it is useful to display the image header information via scan.header.
If you call scan.get_fdata() befor...
Fish_In_A_Suit
Votes: 0
Answers: 1
How can I obtain 2D slices from a 3D NIfti volume?
I'm currently using the following code to convert DCM slices into NIfti images:
import dicom2nifti
import os
dicom2nifti.convert_directory("input_path", "output_path", compression...
Mauricésar Barbosa
Votes: 0
Answers: 1