How to apply a 3D B-Spline Transformation in a Point?

Hi, after a 3D registration process using the B-Spline transformation I got a .tfm file containing the transformation parameters. My problem is: How to apply this transformation in just one point using Python?

Thanks.

Hello Felippe,

To transform a point, call

output_point = transform.TransformPoint(input_point)

HTH,
Matt

2 Likes