How to I rosbag/record a loosless compressed images
Hi
I like to record raw images using rosbag.
rosbag record /front_camera/image_raw
Works perfect and I can view the images with
rosbag play my_bag.bag &
rosrun image_view image_view /front_camera/image_raw
But the bag files becomes get big very fast
My question is now is there a way to record images loosless compressed? Currently I see the following topics
/front_camera/image_raw
/front_camera/image_raw/compressed
/front_camera/image_raw/compressed/parameter_descriptions
/front_camera/image_raw/compressed/parameter_updates
/front_camera/image_raw/compressedDepth
/front_camera/image_raw/compressedDepth/parameter_descriptions
/front_camera/image_raw/compressedDepth/parameter_updates
/front_camera/image_raw/theora
/front_camera/image_raw/theora/parameter_descriptions
/front_camera/image_raw/theora/parameter_updates
I tried recording the /front_camera/image_raw/compressed or /front_camera/image_raw/theora butI was not able to view the recorded images using image_view.
Thanks Markus