Matlab crashes when trying to read rosbag

11 views (last 30 days)
Niklas Dörr
Niklas Dörr on 21 Apr 2021
Answered: Chidvi Modala on 3 Jun 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 Comments
Karthik Reddy Vennapureddy
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 on 22 Apr 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

Sign in to comment.

Answers (1)

Chidvi Modala
Chidvi Modala on 3 Jun 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

Categories

Find more on Network Connection and Exploration in Help Center and File Exchange

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!