Action: Performed registration between two models to generate transform
Expected: Number of vertices to match the number of rows in the transform txt file
Result: The numbers did not match
The computed transform is independent from the models that generated them.
You can export the transform to a vector volume (using Transforms module) and then use “Probe volume with model” module to get displacement values assigned to each model point.
All the displacement locations are stored in the model as point scalar. You can save it to standard VTK file formats and read the displacement values from that.
If you want to process the displacement in an external non-VTK-based software then you can access the point scalars as a numpy array and write to file in any format using a few lines of Python script. Probably you can also use a VTK filter to convert the point scalars to a vtkTable and use VTK delimited file writer to export to a csv file.