Matlab crashes when trying to read rosbag

14 visualizaciones (últimos 30 días)
Niklas Dörr
Niklas Dörr el 21 de Abr. de 2021
Respondida: Chidvi Modala el 3 de Jun. de 2021
I am using a ros2 publisher in matlab simulink to publish msgs of msg type "MarkerArray". This topic is recorded in a linux vm using ros2 bag for ros dashing. The ros bags are not corrupted and can be shown in rqt and in rviz. But when I try to read the rosbag into matlab, matlab crashes. Following commands are used to read the rosbag:
folderPath = fullfile(pwd,'rosbag2_2021_04_21-07_36_36');
info = ros2("bag","info",folderPath)
bag = ros2bag(folderPath)
msgs = readMessages(bag)
It crashes when it tries to execute the "readMessages" command. I tried this with other msg types e.g. "point" and it works fine. Also i tried sending an empty "MarkerArray" and it worked fine. I attatched the crash_dump and the zipped project with the rosbag to reproduce the error. I am hoping that this problem is going to be fixed soon as I am really depending on this feature to evaluate my bachelorthesis.
  2 comentarios
Karthik Reddy Vennapureddy
Karthik Reddy Vennapureddy el 22 de Abr. de 2021
Hi Niklas,
Contacting MathWorks Technical support at https://www.mathworks.com/support.html would help you in resolving this issue.
Thanks,
Karthik Reddy
Niklas Dörr
Niklas Dörr el 22 de Abr. de 2021
Hi Reddy
I contacted them today. I was just hoping someone else had come to this point and allready found a way to fix it.
Thank you,
Niklas

Iniciar sesión para comentar.

Respuestas (1)

Chidvi Modala
Chidvi Modala el 3 de Jun. de 2021
One possible reason can be due to reading all the messages at a time. If we read all the messages with readMessages(bag), then the MATLAB process is being killed by OS or kernel. This is because there will be large number of messages in bag file and each consuming large size. If the available space in memory (RAM) is less than that, then the MATLAB process will be killed.
As a workaround, you can read one message at a time which does not consume lot of memory and the MATLAB process is not killed. Something like the following:
for row=1:msg.NumMessages
pc = readMessages(msg,row);
end

Categorías

Más información sobre Network Connection and Exploration en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by