calculate rotation of an object using three markers connected to an object
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi
I am trying to calculate the rotation (orientation) of an object using three markers placed on the sides of the object. I have attached the sketch of the given object with markers on it.
Can anyone please help me on this?
Thank you!
PA
2 Kommentare
Adam Danz
am 4 Okt. 2019
Not enough info.
Are you rotating the image or are you rotating a set of coordinates that are similar to those shown in the image?
What is the axis of rotation?
What is the angle of rotation?
Akzeptierte Antwort
Matt J
am 4 Okt. 2019
You can use this FEX file to calculate the rotation of a set of points,
3 Kommentare
Adam Danz
am 5 Okt. 2019
Bearbeitet: Adam Danz
am 5 Okt. 2019
@pacharya , When you use a new function for the first time, take a few minutes to read about the function by using the help() or doc() commands. It is important to 1) understand what the function generally does, 2) understand what inputs are required and what form they should take, and 3) understand what the function outputs.
Matt has done an excellent job at documenting this function and the input description is clear:
% absor(A,B, ...)
% A: a 2xN or 3xN matrix whos columns are the coordinates of N source points.
% B: a 2xN or 3xN matrix whos columns are the coordinates of N target points.
If the dimensions of 'A' do not fit those requirements, you get the error message you shared.
If your marker data are 3D you need to organize them into a 3xN matrix.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Interactions, Camera Views, and Lighting finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!