How to Transform of coordinate of actors from vehicle coordinate to world coordinate or refference coordinate system (ADAS toolbox) ...?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
sidharth sidharth
el 28 de Nov. de 2019
Respondida: Qu Cao
el 16 de En. de 2020
How to Transform of coordinate of actors from vehicle coordinate to world coordinate or refference coordinate system (ADAS toolbox) ...?
egoWaypoints = ; % ego vehicle waypoints wrt world coordinate.
egoAngle = atan(diff(egoWaypoints(:,1))./diff(egoWaypoints(:,2)));
egoAngle(end+1) = egoAngle(end);
tempX = ; % X coordinate wrt to Vehicle coordinate system from sensor fusion
tempY = ; % Y coordinate wrt to Vehicle coordinate system from sensor fusion
relX = tempX.*sin(abs(egoAngle(1:length(tempX))))-tempY.*cos(abs(egoAngle(1:length(tempX))));
relY = -tempX.*cos(abs(egoAngle(1:length(tempX))))-tempY.*sin(abs(egoAngle(1:length(tempX))));
absX = egoWaypoints(1:length(tempX),1)+relX;
absY = egoWaypoints(1:length(tempX),2)+relY;
0 comentarios
Respuesta aceptada
Qu Cao
el 16 de En. de 2020
The following documenation page explains the vehicle coordinate system and the world coordinate system:
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Automated Driving Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!