waypointTrajectory orientation is not matching
3 次查看(过去 30 天)
显示 更早的评论
Two trajectories were generated considering the monocular visual-inertial example https://de.mathworks.com/help/fusion/ug/visual-inertial-odometry-using-synthetic-data.html
The first trajectory is same as in example
% track without orientation angles
traj = waypointTrajectory(wayPoints, 'TimeOfArrival', t, ...
'Velocities', velocities, 'SampleRate', sampleRate);
The second trajectory the orientation is added to the same values in example
Ori = [0 0 0;...
0 0 0;...
90 0 0;...
90 0 0;...
0 0 0;...
0 0 0;...
0 0 0;...
90 0 0;...
180 0 0;...
180 0 0;...
180 0 0];
% track with orientation angles
traj_Ori= waypointTrajectory(wayPoints, ...
'TimeOfArrival',t, ...
'Orientation',quaternion(Ori,'eulerd','ZYX','frame'), ...
'Velocities', velocities,'SampleRate',sampleRate);
Later both trajectories were plotted together to check if they have same values. The position is exactly matching but the orientation-axis doesn't.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/386583/image.jpeg)
The Roll, Pitch and Yaw angles are following:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/386593/image.png)
What is the correct way to generate the trajectory with given orientation angels?
0 个评论
采纳的回答
Brian Fanous
2020-10-21
Hi Ravindra
In the first example you are not specifying the Orienation so the waypointTrajectory infers that the vehicle is pointed in the direction of travel. In the second example you are explicitly specifying the orientation so the waypointTrajectory uses the Ori array. Try:
help waypointTrajectory/Orientation
Best,
Brian
4 个评论
Paulo Ricardo Marques de Araujo
2023-1-25
Having the same challenge because I am working with data coming from NovAtel systems. Any thoughts on how to model the motion direction to follow the y-axis of the car?
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!