Obtaining Coordinates of Registration Marker Centers

The registration markers are spherical objects. The boundaries of these spheres will be digitized from magnetic resonance imaging and during joint testing using a digitizing probe, see Previous Protocols above. More than 10 points are expected to be acquired for each registration marker for a given experimentation modality. For TibioFemoral Joint Experimentation, roughly 10 surface points will be acquired for each registration markers. For PatelloFemoral Joint Experimentation, the locations of the 12 divot points will be acquired (see Specifications/SpecimenPreparation). For Anatomical Imaging, surface coordinates will be acquired from the .stl model of each registration marker.

The following scripts, which can be found in the repository at https://simtk.org/websvn/wsvn/openknee/utl/Registration/, will allow for a relationship between the coordinate systems.

TibioFemoral Joint Configuration Files

TFSphereTransform.py

goal
to find the location of the center of the registration markers (on the femur and tibia) with regards to the optotrak sensor coordinate system given the coordinates of points on the surface of the markers with respect to the global optotrak coordinate system
requirements

python [version 2.7] (https://www.python.org) and numpy (https://www.numpy.org)

input

the name/path of a Sim Vitro state configuration file, specific to TibioFemoral Joint Experimentation data, containing the coordinates of MRI Fiducial Sphere Positions, n surface locations for each of three registration markers (n > 10), totaling about 30 locations

logic
  • upon running the script, the user is prompted with a dialog box that allows them to select the state configuration file they would like to use
  • the python script finds the [MRI Fiducial Sphere Positions] section of the specified state configuration file, extracts the coordinates for the registration marker (x,y,z) and the position sensor (x,y,z,roll,pitch,yaw) and enters them into matrices
  • it then extracts the transformation matrices that gives the relationship between the the optotrak global coordinate system and the optotrak bone sensor from the position sensor matrix for each of the 30 locations
  • the inverse of this transformation matrix for each set of coordinates is multiplied by the respective set of coordinates (x,y,z) to obtain the new coordinates in the the optotrak bone sensor coordinate system
  • the coordinates are then split up into three matrices for the three respective registration markers
  • finally we set a sphere to the respective coordinates for each registration marker, returning the center in bone sensor coordinates and the radius of the marker as well as the centroid amongst the three spheres
math
the transformation matrix extracted from each position sensor coordinate set (x,y,z,r,p,w) is as followed:
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:34.737438 2025] [wsgi:error] [pid 1305649:tid 1305649] [remote 104.197.69.115:2630] failed to exec() latex
    

Imagine the matrix containing points portraying the position of registration markers in the world coordinates as "A" and the transformation matrix we extracted as "T", and B is the coordinates in the bone sensor coordinates that we want

As a result we need the inverse of that transformation matrix to multiply by A

(Side Note: the transformation matrix is 4 by 4 for each set of x,y,z coordinates. As a result we change the thirty 3 by 1 coordinate arrays into a 4 by 1 array by adding a 1 at the end. This will cancel out by the end and we can just take the first 3 resulting coordinates of the array since the 4th will still be a 1)

output

the script prints the center and radius (in meteres) of each sphere (x, y, z) and r that best represents the spherical distribution of n locations as well as the centroid between the three spheres, in addition it exports this data to the "Tibia_Results.csv" and "Femur_Results.csv" files, respectively, located in the Results - Marker Optotrak Coordinates folder.

examples

[%username% Registration]$ python TFSphereTransform.py

(dialog box appears)

The center of the sphere fit to Rigid Body 1 (Tibia) Registration Marker 1, in Tibia Optotrak Sensor Coordinates, with the units being meters, is located at: [-0.08231697 -0.00683181 -0.04593537]

And the radius is: 0.0106449411987

The center of the sphere fit to Rigid Body 1 (Tibia) Registration Marker 2, in Tibia Optotrak Sensor Coordinates, with the units being meters, is located at: [-0.0232474 0.00014573 -0.05992128]

And the radius is: 0.0104587217176

The center of the sphere fit to Rigid Body 1 (Tibia) Registration Marker 3, in Tibia Optotrak Sensor Coordinates, with the units being meters, is located at: [-0.04869049 0.01748811 -0.01951902]

And the radius is: 0.0104835155492

The centroid of the Rigid Body 1 (Tibia) sensors, in Tibia Optotrak Sensor Coordinates, with the units in meters, is located at: [-0.05141829 0.00360068 -0.04179189]

The center of the sphere fit to Rigid Body 2 (Femur) Registration Marker 1, in Femur Optotrak Sensor Coordinates, with the units being meters, is located at: [-0.0329999 0.01907689 -0.02117003]

And the radius is: 0.0104997342103

The center of the sphere fit to Rigid Body 2 (Femur) Registration Marker 2, in Femur Optotrak Sensor Coordinates, with the units being meters, is located at: [-0.09081468 -0.00377113 -0.04492377]

And the radius is: 0.0104194016865

The center of the sphere fit to Rigid Body 2 (Femur) Registration Marker 3, in Femur Optotrak Sensor Coordinates, with the units being meters, is located at: [-0.08071711 -0.00088821 -0.00391487]

And the radius is: 0.0102451485457

The centroid of the Rigid Body 2 (Femur) sensors, in Femur Optotrak Sensor Coordinates, with the units being meters, is located at: [-0.06817723 0.00480585 -0.02333622]

Results have been exported to "Tibia_Results.csv" and "Femur_Results.csv".

Patellofemoral Joint Configuration Files

PFSphereTransform.py

goal
to find the location of the center of the registration markers (on the patella) with regards to the optotrak sensor coordinate system given the coordinates of the divot points on the registration marker with respect to the global optotrak coordinate system
requirements

python [version 2.7] (https://www.python.org) and numpy (https://www.numpy.org)

input

the name/path of a Sim Vitro state configuration file, specific to PatelloFemoral Joint Experimentation data, containing the coordinates of the Patella MRI Marker, 12 divot point locations on the marker

logic
  • upon running the script, the user is prompted with a dialog box that allows them to select the state configuration file they would like to use
  • the python script finds the [MRI Patella Marker] section of the specified state configuration file, extracts the 12 divot point coordinates for the registration marker (x,y,z) and the position sensor (x,y,z,roll,pitch,yaw) and enters them into matrices
  • it then extracts the transformation matrices that gives the relationship between the the optotrak global coordinate system and the optotrak bone sensor from the position sensor matrix for each of the 12 locations
  • the inverse of this transformation matrix for each set of coordinates is multiplied by the respective set of coordinates (x,y,z) to obtain the new coordinates in the the optotrak bone sensor coordinate system
  • because the patellofemoral joint configuration file does not have the surface coordinates on spheres (like tibiofemoral does), rather, it has measurements on divot points on the 3D printed patella registration marker assembly.
  • the CAD dimensions are then extracted from CAD_PT_DIMENSIONS.csv (https://simtk.org/websvn/wsvn/openknee/utl/PatFem_Registration/CAD_PT_DIMENSIONS.csv) to find the 3 centers of the 3 MRI spheres in optotrak sensor coordinates

  • if the script is unable to locate this file in the user's local repository, the user will be prompted with an alert and another dialogue to find the file themselves
math
  • the math to convert the points from optotrak global coordinates to optotrak sensor coordinates is the same as for TibioFemoral

  • in addition, in order to find the location of the centers of three spheres given the 12 divot points, the dimensional relationship among the CAD points is used. This relationship is described at https://simtk.org/websvn/wsvn/openknee/utl/PatFem_Registration/CAD_PT_DIMENSIONS.csv

  • the center of the marker was found by averaging the 12 points in the CAD coordinate, and then finding the distance from the center of the marker to each of the spheres
  • this distance was then added to the center of the registration marker in optotrak sensor coordinates, which was found by averaging the 12 points in optotrak sensor coordinates, to find the location of the spheres in optotrak sensor coordinates
output

the script prints the center (in meteres) of each sphere (x, y, z) and in addition it exports this data to the "Patella_Results.csv" file, respectively, located in the Results - Marker Optotrak Coordinates folder.

examples

[%username% Registration]$ python PFSphereTransform.py

(dialog box appears)

The origin of Patella MRI registration marker is: [-0.14644472749814882, 0.054232975602513313, 0.11892285921909156]

The center of Point 2 is: [ -0.14619473 2.79314964 36.72433953]

The center of Point 3 is: [ 28.31180527 9.10314964 -19.40666047]

The center of Point 4 is: [-28.60519473 9.10414964 -19.40566047]

Results have been exported to "Patella_Results.csv".

Anatomical Imaging Files

STLSphereTransform.py

goal
to import an .stl file and extract the coordinates from the surface of a registration marker in anatomical imagining coordinates, fit a sphere to that registration marker, find the center and radius of that sphere, and export the results to later form a relationship between the optotrak world coordinates and the MRI imaging coordinates
requirements

python [version 2.7] (https://www.python.org), numpy (https://www.numpy.org), and the numpy-stl 1.4.2 folder (https://pypi.python.org/pypi/numpy-stl)

input
upon running the script, the user will be prompted with a dialog box that will allow them to choose the .stl file they wish to use
logic
the script will extract the coordinates of the vertices of each of the triangles within the stl file and use those coordinates to fit a sphere to those coordinates
output
the script will return the fitted sphere center (x,y,z) and radius (r) [the data is in mm] and then write a .txt with the user's specified name containing the data
examples

[%username% Registration]$ python stldataprocess.py

(dialog box appears)

Radius (mm): 8.06225848609

Center (mm): [-38.21938621 13.89618373 77.8407352 ]

The results will now be stored in a .txt file.

Creating new text file...

Enter string for name of text file:'test1'

These results are stored in the specified file.

Transformation Matrices

-- aerdemir 2015-06-30 12:31:16 This session already has documentation to calculate transformation matrices between bone registration marker coordinate system and Optotrak coordinate system and bone registration marker coordinate system and image coordinate system. It will be good to expand this session for patellofemoral registration marker assembly. Particularly, by providing the necessary inputs for calculations. Also, we need to correct the information to emphasize that we are finding transformation matrices in reference to local (bone specific) Optotrak coordinate systems not global.

Femur

It is assumed that all the registration marker locations described below are obtained following the protocol described above. Variables to establish the transformation matrix between femur and joint testing coordinate systems are:

  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:34.930711 2025] [wsgi:error] [pid 1305653:tid 1305653] [remote 104.197.69.115:2630] failed to exec() latex
    
    : center of the central/posterior registration marker on the femur in Optotrak global coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:34.985298 2025] [wsgi:error] [pid 1305656:tid 1305656] [remote 104.197.69.115:2630] failed to exec() latex
    
    : center of the lateral registration marker on the femur in Optotrak global coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:35.038614 2025] [wsgi:error] [pid 1305658:tid 1305658] [remote 104.197.69.115:2630] failed to exec() latex
    
    : center of the medial registration marker on the femur in Optotrak global coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:35.097903 2025] [wsgi:error] [pid 1305660:tid 1305660] [remote 104.197.69.115:2630] failed to exec() latex
    
    : origin of the femur fixed registration marker coordinate system in Optotrak global coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:35.161702 2025] [wsgi:error] [pid 1305662:tid 1305662] [remote 104.197.69.115:2630] failed to exec() latex
    
    : x-axis of the femur fixed registration marker coordinate system in Optotrak global coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:35.225264 2025] [wsgi:error] [pid 1305663:tid 1305663] [remote 104.197.69.115:2630] failed to exec() latex
    
    : y-axis of the femur fixed registration marker coordinate system in Optotrak global coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:35.289632 2025] [wsgi:error] [pid 1305665:tid 1305665] [remote 104.197.69.115:2630] failed to exec() latex
    
    : z-axis of the femur fixed registration marker coordinate system in Optotrak global coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:35.351846 2025] [wsgi:error] [pid 1305670:tid 1305670] [remote 104.197.69.115:2630] failed to exec() latex
    
    : transformation matrix from femur fixed registration marker coordinate system to Optotrak global coordinate system

The transformation matrix between femur and joint testing coordinate system can be obtained as:

latex error! exitcode was 2 (signal 0), transscript follows:

[Tue May 13 22:33:35.410157 2025] [wsgi:error] [pid 1305672:tid 1305672] [remote 104.197.69.115:2630] failed to exec() latex

Variables to establish the transformation matrix between femur and imaging coordinate systems are:

  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:35.468730 2025] [wsgi:error] [pid 1305675:tid 1305675] [remote 104.197.69.115:2630] failed to exec() latex
    
    : center of the central/posterior registration marker on the femur in anatomical imaging coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:35.533289 2025] [wsgi:error] [pid 1305677:tid 1305677] [remote 104.197.69.115:2630] failed to exec() latex
    
    : center of the lateral registration marker on the femur in anatomical imaging coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:35.596741 2025] [wsgi:error] [pid 1305680:tid 1305680] [remote 104.197.69.115:2630] failed to exec() latex
    
    : center of the medial registration marker on the femur in anatomical imaging coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:35.657834 2025] [wsgi:error] [pid 1305681:tid 1305681] [remote 104.197.69.115:2630] failed to exec() latex
    
    : origin of the femur fixed registration marker coordinate system in anatomical imaging coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:35.721385 2025] [wsgi:error] [pid 1305682:tid 1305682] [remote 104.197.69.115:2630] failed to exec() latex
    
    : x-axis of the femur fixed registration marker coordinate system in anatomical imaging coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:35.782886 2025] [wsgi:error] [pid 1305684:tid 1305684] [remote 104.197.69.115:2630] failed to exec() latex
    
    : y-axis of the femur fixed registration marker coordinate system in anatomical imaging coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:35.846387 2025] [wsgi:error] [pid 1305685:tid 1305685] [remote 104.197.69.115:2630] failed to exec() latex
    
    : z-axis of the femur fixed registration marker coordinate system in anatomical imaging coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:35.910118 2025] [wsgi:error] [pid 1305686:tid 1305686] [remote 104.197.69.115:2630] failed to exec() latex
    
    : transformation matrix from femur fixed registration marker coordinate system to anatomical imaging coordinate system

The transformation matrix between femur and imaging coordinate system can be obtained by following the steps already outlined above.

Tibia

It is assumed that all the registration marker locations described below are obtained following the protocol described above. Variables to establish the transformation matrix between tibia and joint testing coordinate systems are:

  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:35.969019 2025] [wsgi:error] [pid 1305691:tid 1305691] [remote 104.197.69.115:2630] failed to exec() latex
    
    : center of the central/posterior registration marker on the tibia in Optotrak global coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:36.027894 2025] [wsgi:error] [pid 1305692:tid 1305692] [remote 104.197.69.115:2630] failed to exec() latex
    
    : center of the lateral registration marker on the tibia in Optotrak global coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:36.091713 2025] [wsgi:error] [pid 1305693:tid 1305693] [remote 104.197.69.115:2630] failed to exec() latex
    
    : center of the medial registration marker on the tibia in Optotrak global coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:36.155215 2025] [wsgi:error] [pid 1305694:tid 1305694] [remote 104.197.69.115:2630] failed to exec() latex
    
    : origin of the tibia fixed registration marker coordinate system in Optotrak global coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:36.219355 2025] [wsgi:error] [pid 1305696:tid 1305696] [remote 104.197.69.115:2630] failed to exec() latex
    
    : x-axis of the tibia fixed registration marker coordinate system in Optotrak global coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:36.285134 2025] [wsgi:error] [pid 1305697:tid 1305697] [remote 104.197.69.115:2630] failed to exec() latex
    
    : y-axis of the tibia fixed registration marker coordinate system in Optotrak global coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:36.346214 2025] [wsgi:error] [pid 1305701:tid 1305701] [remote 104.197.69.115:2630] failed to exec() latex
    
    : z-axis of the tibia fixed registration marker coordinate system in Optotrak global coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:36.401345 2025] [wsgi:error] [pid 1305702:tid 1305702] [remote 104.197.69.115:2630] failed to exec() latex
    
    : transformation matrix from tibia fixed registration marker coordinate system to Optotrak global coordinate system

The transformation matrix between tibia and joint testing coordinate system can be obtained through similar calculations conducted for femur above. Variables to establish the transformation matrix between tibia and imaging coordinate systems are:

  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:36.450879 2025] [wsgi:error] [pid 1305703:tid 1305703] [remote 104.197.69.115:2630] failed to exec() latex
    
    : center of the central/posterior registration marker on the tibia in anatomical imaging coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:36.509923 2025] [wsgi:error] [pid 1305706:tid 1305706] [remote 104.197.69.115:2630] failed to exec() latex
    
    : center of the lateral registration marker on the tibia in anatomical imaging coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:36.568025 2025] [wsgi:error] [pid 1305708:tid 1305708] [remote 104.197.69.115:2630] failed to exec() latex
    
    : center of the medial registration marker on the tibia in anatomical imaging coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:36.628987 2025] [wsgi:error] [pid 1305709:tid 1305709] [remote 104.197.69.115:2630] failed to exec() latex
    
    : origin of the tibia fixed registration marker coordinate system in anatomical imaging coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:36.686569 2025] [wsgi:error] [pid 1305711:tid 1305711] [remote 104.197.69.115:2630] failed to exec() latex
    
    : x-axis of the tibia fixed registration marker coordinate system in anatomical imaging coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:36.741238 2025] [wsgi:error] [pid 1305712:tid 1305712] [remote 104.197.69.115:2630] failed to exec() latex
    
    : y-axis of the tibia fixed registration marker coordinate system in anatomical imaging coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:36.796458 2025] [wsgi:error] [pid 1305714:tid 1305714] [remote 104.197.69.115:2630] failed to exec() latex
    
    : z-axis of the tibia fixed registration marker coordinate system in anatomical imaging coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:36.852465 2025] [wsgi:error] [pid 1305715:tid 1305715] [remote 104.197.69.115:2630] failed to exec() latex
    
    : transformation matrix from tibia fixed registration marker coordinate system to anatomical imaging coordinate system

The transformation matrix between tibia and imaging coordinate system can be obtained by following the steps outlined for the femur, see above.

Patella

The following information should be available from CAD drawing of the patella registration marker assembly:

  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:36.904019 2025] [wsgi:error] [pid 1305718:tid 1305718] [remote 104.197.69.115:2630] failed to exec() latex
    
    : divot coordinates on patella registration marker assembly in CAD coordinate system (i = 1 to 12)
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:36.955407 2025] [wsgi:error] [pid 1305719:tid 1305719] [remote 104.197.69.115:2630] failed to exec() latex
    
    : center of the central/superior registration marker on the patella in CAD coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:37.002664 2025] [wsgi:error] [pid 1305720:tid 1305720] [remote 104.197.69.115:2630] failed to exec() latex
    
    : center of the lateral registration marker on the patella in CAD coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:37.050116 2025] [wsgi:error] [pid 1305722:tid 1305722] [remote 104.197.69.115:2630] failed to exec() latex
    
    : center of the medial registration marker on the patella in CAD coordinate system

The location of divot coordinates should be measured during specimen preparation:

  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:37.102905 2025] [wsgi:error] [pid 1305723:tid 1305723] [remote 104.197.69.115:2630] failed to exec() latex
    
    : divot coordinates on patella registration marker assembly in Optotrak global coordinate system (i = 1 to 12)

Singular value decomposition, e.g. Söderkvist and Wedin (1993), using divot coordinates measured in two coordinate systems can provide the following transformation matrix:

  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:37.160922 2025] [wsgi:error] [pid 1305724:tid 1305724] [remote 104.197.69.115:2630] failed to exec() latex
    
    : transformation matrix from CAD based registration marker coordinate system to Optotrak global coordinate system

Using center of patella registration markers with this transformation matrix one can obtain:

  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:37.224402 2025] [wsgi:error] [pid 1305725:tid 1305725] [remote 104.197.69.115:2630] failed to exec() latex
    
    : center of the central/superior registration marker on the patella in Optotrak global coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:37.289073 2025] [wsgi:error] [pid 1305727:tid 1305727] [remote 104.197.69.115:2630] failed to exec() latex
    
    : center of the lateral registration marker on the patella in Optotrak global coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:37.354511 2025] [wsgi:error] [pid 1305731:tid 1305731] [remote 104.197.69.115:2630] failed to exec() latex
    
    : center of the medial registration marker on the patella in Optotrak global coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:37.419828 2025] [wsgi:error] [pid 1305734:tid 1305734] [remote 104.197.69.115:2630] failed to exec() latex
    
    : transformation matrix from patella fixed registration marker coordinate system to Optotrak global coordinate system

The transformation matrix between patella and joint testing coordinate system can be obtained by following the steps outlined for the femur, see above.

Variables to establish the transformation matrix between patella and imaging coordinate systems are:

  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:37.487623 2025] [wsgi:error] [pid 1305736:tid 1305736] [remote 104.197.69.115:2630] failed to exec() latex
    
    : center of the central/superior registration marker on the patella in anatomical imaging coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:37.554116 2025] [wsgi:error] [pid 1305737:tid 1305737] [remote 104.197.69.115:2630] failed to exec() latex
    
    : center of the lateral registration marker on the patella in anatomical imaging coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:37.617166 2025] [wsgi:error] [pid 1305739:tid 1305739] [remote 104.197.69.115:2630] failed to exec() latex
    
    : center of the medial registration marker on the patella in anatomical imaging coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:37.680390 2025] [wsgi:error] [pid 1305740:tid 1305740] [remote 104.197.69.115:2630] failed to exec() latex
    
    : origin of the patella fixed registration marker coordinate system in anatomical imaging coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:37.738174 2025] [wsgi:error] [pid 1305741:tid 1305741] [remote 104.197.69.115:2630] failed to exec() latex
    
    : x-axis of the patella fixed registration marker coordinate system in anatomical imaging coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:37.795135 2025] [wsgi:error] [pid 1305742:tid 1305742] [remote 104.197.69.115:2630] failed to exec() latex
    
    : y-axis of the patella fixed registration marker coordinate system in anatomical imaging coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:37.853728 2025] [wsgi:error] [pid 1305744:tid 1305744] [remote 104.197.69.115:2630] failed to exec() latex
    
    : z-axis of the patella fixed registration marker coordinate system in anatomical imaging coordinate system
  • latex error! exitcode was 2 (signal 0), transscript follows:
    
    [Tue May 13 22:33:37.911404 2025] [wsgi:error] [pid 1305746:tid 1305746] [remote 104.197.69.115:2630] failed to exec() latex
    
    : transformation matrix from patella fixed registration marker coordinate system to anatomical imaging coordinate system

The transformation matrix between patella and imaging coordinate system can be obtained by following the steps outlined for the femur, see above.

References

Söderkvist I, Wedin PA. Determining the movements of the skeleton using well-configured markers. J Biomech. 1993 Dec;26(12):1473-7. PubMed

Specifications/Registration/Discussion (last edited 2019-04-24 18:37:28 by ricimorrill1)