prevent ros.BagSelection accessing bag.file when being loaded
Afficher commentaires plus anciens
Hi,
I use a struct containing multiple ros.BagSelection-Objects. The ros.BagSelection-Objects are created by:
myBag = rosbag('myBagFileName.bag');
myStruct.bag(ii) = select(bag,'Topic',myTopic);
The FilePath inside the ros.BagSelection-Objects refer to huge bag-files. This struct is saved to a mat-file. When loading the mat-file it may take incredible long time, until the struct is loaded.
Does the load() or loadobj() method parses all huge bag-files when loading only the BagSelection-Objects?
If 'yes', how to prevent the load() method parsing the huge bag-files?
Thanks!
Réponses (1)
Prabeen Sahu
le 19 Déc 2023
0 votes
When a ros.BagSelection object is created, it opens, parses, and indexes the bag file. Saving to a mat file stores metadata and indexing, excluding actual messages.
Loading the mat file opens the bag file without reindexing, facilitating faster loading. However, to read messages, the original bag file must be opened, potentially causing delays if it's large.
1 commentaire
Andreas Schwager
le 19 Déc 2023
Catégories
En savoir plus sur Text Files dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!