Skip to content

amine0110/nifti-to-stl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

Convert Nifti Files into STL Files

This code is for converting the 3D segmentation files (Nifti) into 3D mesh representation (STL). If you are interested about the project then you can read more in this article.

The operation is very easy and can be done if a few lines of code.

import nibabel as nib
import numpy as np
from stl import mesh
from skimage import measure

# Path to the nifti file (.nii, .nii.gz)
file_path = 'segmentation.nii'

# Extract the numpy array
nifti_file = nib.load(file_path)
np_array = nifti_file.get_fdata()

verts, faces, normals, values = measure.marching_cubes(np_array, 0)
obj_3d = mesh.Mesh(np.zeros(faces.shape[0], dtype=mesh.Mesh.dtype))

for i, f in enumerate(faces):
    obj_3d.vectors[i] = verts[f]

# Save the STL file with the name and the path
obj_3d.save('segmentation.stl')

🆕NEW

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.

https://www.learn.pycad.co/course/dicom-simplified

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages