How to shift the origin of a Point Cloud
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Shaurab Show
el 4 de Abr. de 2021
Editada: Image Analyst
el 4 de Abr. de 2021
Hi,
I am a beginner at Matlab and would like some suggestion regarding how to shift the origin of a point cloud to a desired point.
Thanks in advance.
PS: I looked into 'Plot3AxisAtOrigin' but it gives error of function not found.
0 comentarios
Respuesta aceptada
Image Analyst
el 4 de Abr. de 2021
Editada: Image Analyst
el 4 de Abr. de 2021
How about just adding a constant to the x and y vectors. Like to shift it by 5 in the x direction and 7 in the y direction
x = x + 5;
y = y + 7;
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Point Cloud Processing 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!