Read the bag file
I am using the python Wrapper (read_bag_example) to read a recorded bag file. I put the right file path
My file path is
E:\PhD Academics\Texas\HSC\BuoyTesting\Intel_RealSense\python codes\My projects\Depth\bag\mezoo.bag
and the code line written is
parser.add_argument("-i", "--input", type=str, help="E:\PhD Academics\Texas\HSC\BuoyTesting\Intel_RealSense\python codes\My projects\Depth\bag\mezoo.bag")
But I keep receiving this message
No input paramater have been given.
For help type --help
***************
Thanks in advance for help
-
Hi Osallam I believe that the basic formatting for launching a bag with this program is:
python3 read_bag_example.py -i <bag path and filename>
For example:
python3 read_bag_example.py -i test.bag
The above command without a file path would assume that the bag file is in the same directory as the read_bag_example.py script.
So to find your particular bag with a full path to the filename, it may be something like this:
python3 read_bag_example.py -i E:\PhD Academics\Texas\HSC\BuoyTesting\Intel_RealSense\python codes\My projects\Depth\bag\mezoo.bag
Please sign in to leave a comment.
Comments
1 comment