I would like to use the files generated by SimVascular's segmentation feature in a project that I am developing, but I am struggling to understand the structure of the .ctgr format.
The files that I have been able to generate by following https://simvascular.github.io/docsModelGuide.html or https://www.youtube.com/watch?v=mNclY0T4ek8 are intelligible to me. They have the following xml structure:
Code: Select all
<contourgroup ..>
<timestep ..>
<lofting_parameters ..>
<contour ..>
list of control and contour points
</contour>
<contour ..>
list of control and contour points
</contour>
</lofting_parameters>
</timestep>
</contourgroup>
Code: Select all
<path ..>
<timestep ..>
<path_element ..>
<control_points>
...
</control_points>
<path_points>
...
</path_points>
</path_element>
</timestep>
</path>
Best,
Luca