Medical Imaging Example Meshes

From crtc.cs.odu.edu
Revision as of 15:56, 2 June 2020 by Spyridon97 (talk | contribs)
Jump to: navigation, search

3D Example Meshes

The directory containing the 3D input data is located in the 3D folder of Medical_Imaging_Data.

Ircad2

  • Input Image
  • Input image : Dimensions (512x512x219) with spacing (0.976562x0.976562x1.40002)
  • Uniform with Delta = 2: 5,031,442 tetrahedra (#elements for each execution might differ due to the usage of more than one thread)
  • Graded with Delta = 1: 6,072,751 tetrahedra (#elements for each execution might differ due to the usage of more than one thread)
  • Uniform with Delta = 2 and excluded label 1: 1,941,468 tetrahedra (#elements for each execution might differ due to the usage of more than one thread)

Commands to generate meshes:

Uniform with Delta = 2: Output Mesh

docker run -v $(pwd):/data/ crtc_i2m tessellate3d --input ./Medical_Imaging_Data/3D/Ircad2.nrrd --delta 2 --threads 6 --output ./Ircad2,d=2.vtk

Graded with Delta = 1: Output Mesh

docker run -v $(pwd):/data/ crtc_i2m tessellate3d --input ./Medical_Imaging_Data/3D/Ircad2.nrrd --delta 1 --threads 6 --volume-grading --output ./Ircad2,d=1,graded.vtk

Uniform with Delta = 2 and excluded label 1: Output Mesh

docker run -v $(pwd):/data/ crtc_i2m tessellate3d --input ./Medical_Imaging_Data/3D/Ircad2.nrrd --exclude-labels 1 --delta 2 --threads 6 --output ./Ircad2,d=2,el=1.vtk

Knee-Char

  • Input Image
  • Input image : Dimensions (512x512x119) with spacing (0.27734x0.27734x1)
  • Uniform with Delta = default : 386,869 tetrahedra
  • Graded with Delta = default : 274,309 tetrahedra

Commands to generate meshes:

Uniform with Delta = default : Output Mesh

docker run -v $(pwd):/data/ crtc_i2m tessellate3d --input ./Medical_Imaging_Data/3D/Knee-Char.mha --output ./Knee-Char,d=1.19.vtk

Graded with Delta = default : Output Mesh

docker run -v $(pwd):/data/ crtc_i2m tessellate3d --input ./Medical_Imaging_Data/3D/Knee-Char.mha --volume-grading --output ./Knee-Char,d=1.19,graded.vtk