Learn how to effectively manage and process DICOM files in Python with our comprehensive course, designed to equip you with the skills and knowledge you need to succeed. www.learn.pycad.co/course/dicom-simplified
@tahakashif99322 жыл бұрын
What IDE are you using? I downloaded Spyder and whatever you have from line 1 to 4 do not exist. Please let me know!
@pycad2 жыл бұрын
I am using VS code!
@mardeenosman89792 жыл бұрын
What about STL TO NIFFTI
@pycad2 жыл бұрын
Actually I didn't search for it, but it should be there. You may think of how to read an STL file using numpy-stl, and this will give you the possibility to have a numpy array. And when you have the numpy array you can convert it into nifti, here is an example: pycad.co/how-to-convert-array-into-nifti-python/ kzbin.info/www/bejne/iJzdpJqJYth6fNk I hope it helps :)
@vicentcaselles4807 Жыл бұрын
@@pycad hi! I'm also trying to transform a STL label/mask to a nifti mask, and I'm struggling to do so. I understand how to create a .nii file from a np.array, but I don't know ho to transform the STL file to a np.array effectively. Does anyone know how to do so?