Operating system: Linux
Slicer version:4.11.20210226 r29738 / 7a593c8
Expected behavior:
Actual behavior:
Following a recent online tutorial, I was able to generate a centerline of a segemented aorta. I would like to export this centerline to file. Any format is ok, but I basically expect a list of (x,y,z)'s representing the points on the line.
It seems from some older (ie >10 years old) that this was possible as some point, but I don’t know if that’s the case with the latest version of the vmtk toolkit module.
The centerline can be stored either as a markup curve node or as a model node, just save the scene or (in recent Slicer versions) right-click on the centerline in Data module and click “Export to file…”.
Markup curve is saved in json file format, which is simple and self-describing. However, each branch is a separate curve, so if you want to save a complex tree then it is probably better to us a model node. The model node can be saved in many formats, but if you want to preserve the tree structure and all metadata then you need to use .vtk or .vtp format.
I believe that my version of 3DSlicer, 4.11.20210226, is fairly recent, but when I right-click on the centerline curve or the centerline model in the data module, the only export options listed are to DICOM.
Do I need to install a more recent version of 3D slicer or am I doing something else wrong?
I have been using the VMTK extract centerline to get a 1D hierarchal depiction of lung airway structure. It’s great, thanks! I am trying to get a list of the node points along the network curve as well as the connectivity of the points. It is possible to do this from the Network Curve table using ‘StartPointPosition’ and ‘EndPointPosition’, but is there a more straightforward way to get this information. In short, I would like a list of each node point in the tree (an identifying number plus X Y Z coordinates), and then the connectivity between those (segment number, connecting point 1, connecting point 2)