ROSBag#
- class ROSBag(filename: str, release: str = 'ROS1_NOETIC', topicfilter: str | list[str] | None = None, msgfilter: str | list[str] | None = 'Image', dtype: dtype | str | dict | None = None, colororder: str | dict | None = None, verbose: bool = False, **kwargs: Any)[source]#
Iterate images and point clouds from a ROS 1 bag file.
- Parameters:
filename (str or Path) – path to a
.bagfile, or anhttp(s)://URLrelease (str) – ROS release name (or unique substring), e.g.
"noetic", defaults to"ROS1_NOETIC"; controls the message definitions used to parse the bag filetopicfilter (str or list of str or None) – only yield messages from this topic or list of topics;
Noneaccepts all topicsmsgfilter (str or list of str or None) – only yield messages whose type contains this substring or matches any entry in the list;
Noneaccepts all types, defaults to"Image"dtype (str or dict) – override the numpy dtype for all image pixel data, or by topic
{topic: dtype}colororder (str or dict or None) – override the color-plane order for all image, or by topic
{topic: colororder}kwargs – options applied to image frames, see
convert
- Raises:
ImportError – if the
rosbagspackage is not installed
The resulting object is an iterator that yields:
Imagefor messages whose type ends inImage, which includesCompressedImage.PointCloudforPointCloud2messages (requiresopen3d)the raw deserialised message object for all other types
Each yielded object carries a
timestampattribute (ROS nanosecond epoch from the message header) and atopicattribute (the topic on which it was published).Filters
The message and topic filters can be a single string, or a list of strings. If a single string is provided, it is treated as a list with one element. The filter passes if any of the strings in the list are a substring of the message type (for the message filter) or topic name (for the topic filter). It is an OR condition.
Usage modes
Implicit — iterating directly over the object opens and closes the bag file automatically around the loop:
from machinevisiontoolbox import ROSBag for img in ROSBag("mybag.bag", release="noetic"): img.disp()
Explicit context manager — use a
withstatement when you need to make multiple passes over the bag, call helper methods such astopicsorprint, or simply want a guaranteed close even if an exception is raised:bag = ROSBag("mybag.bag", release="noetic", msgfilter=None) with bag: bag.print() # inspect topics for msg in bag: # iterate messages print(msg.topic, msg.timestamp)
Note
filenamemay be anhttp://orhttps://URL, in which case the bag file is downloaded to a temporary file on first use and that file is reused for the lifetime of theROSBagobject. The temporary file is deleted automatically when the object is garbage collected or when the script exits.Note
If
filenameis a relative path that does not exist in the current working directory, it is looked up in themvtb-datacompanion package automatically. Bag files placed there can therefore be referenced by their bare name, e.g.ROSBag("forest.bag").Note
The
releaseargument controls the ROS message definitions used to parse the bag file. This is important because message definitions can change between ROS releases, and using the wrong definitions can lead to incorrect parsing of the data. Thereleasestring is matched case-insensitively against the member names ofStores, so short names such as"noetic"or"humble"are accepted in addition to the full enum name (e.g."ROS1_NOETIC").Base constructor for image sources.
- Parameters:
kwargs (Any) – source-specific keyword arguments