Skip to content

Instantly share code, notes, and snippets.

@rethink-imcmahon
Last active April 17, 2024 08:09
Show Gist options
  • Star 34 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save rethink-imcmahon/77a1a4d5506258f3dc1f to your computer and use it in GitHub Desktop.
Save rethink-imcmahon/77a1a4d5506258f3dc1f to your computer and use it in GitHub Desktop.
ROS Image Subscriber / JPEG Saver
#! /usr/bin/python
# Copyright (c) 2015, Rethink Robotics, Inc.
# Using this CvBridge Tutorial for converting
# ROS images to OpenCV2 images
# http://wiki.ros.org/cv_bridge/Tutorials/ConvertingBetweenROSImagesAndOpenCVImagesPython
# Using this OpenCV2 tutorial for saving Images:
# http://opencv-python-tutroals.readthedocs.org/en/latest/py_tutorials/py_gui/py_image_display/py_image_display.html
# rospy for the subscriber
import rospy
# ROS Image message
from sensor_msgs.msg import Image
# ROS Image message -> OpenCV2 image converter
from cv_bridge import CvBridge, CvBridgeError
# OpenCV2 for saving an image
import cv2
# Instantiate CvBridge
bridge = CvBridge()
def image_callback(msg):
print("Received an image!")
try:
# Convert your ROS Image message to OpenCV2
cv2_img = bridge.imgmsg_to_cv2(msg, "bgr8")
except CvBridgeError, e:
print(e)
else:
# Save your OpenCV2 image as a jpeg
cv2.imwrite('camera_image.jpeg', cv2_img)
def main():
rospy.init_node('image_listener')
# Define your image topic
image_topic = "/cameras/left_hand_camera/image"
# Set up your subscriber and define its callback
rospy.Subscriber(image_topic, Image, image_callback)
# Spin until ctrl + c
rospy.spin()
if __name__ == '__main__':
main()
@Binsoma
Copy link

Binsoma commented Feb 23, 2018

Hi, Is there a way to republish converted jpeg to a certain topic? Using this program as a real-time converter?
Thanks.

@MengWoods
Copy link

good job

@utkarshanand
Copy link

Hey, I tried this code with an autonomous car simulator. I tried to subscribe to a camera topic (encoded-images). I ran the code an it ran but nothing happened. I can't figure out what the problem is. Do you have any suggestions?

@BvEden
Copy link

BvEden commented Sep 12, 2018

Thank you.

@foemre
Copy link

foemre commented Oct 5, 2018

I used this code to simulate a pipeline where my robot detects text in a cluttered environment and reads it. I needed images every 1 second so I added a simple rospy.sleep(1) after line 27.

@leader1313
Copy link

I got an error.
I run this program but It doesn't work
only printed

segmentation fault

@Michdo93
Copy link

I got an error.
I run this program but It doesn't work
only printed

segmentation fault

The error segmentation fault could appear if you mix Python 2 and Python 3. ROS normally is installed under Python 2. But you could also install as example rospy for Python 3. Maybe this is not the point. If you install ROS OpenCV will be installed for ROS under Python 2 with a version 3.x. If you have separate installed OpenCV the segmentation fault could also appear. It could appear if you use OpenCV 4.x an Python do not know which OpenCV Version it should import. Another solution could be that OpenCV is separately installed for Python 3 if you use Python 2 or the other way around.

@Michdo93
Copy link

Hi, Is there a way to republish converted jpeg to a certain topic? Using this program as a real-time converter?
Thanks.

In ROS you can send a jpeg image as jpeg image. So you have to imread a picture, create an array or matrix and have to send it as sensor_msgs/Image with a publisher. On another node you can subscribe it like shown in this code.

As you can see in the OpenCV documentation

And in the ROS documentation here and here

@benrogue6
Copy link

Hello, I am working on a project having a realsense camera in a gazebo robot model and would like to manipulate it with rospy or roscpp. (The camera should identify the color in the gazebo environment ). Thanks

@GBT16
Copy link

GBT16 commented Sep 17, 2021

Hello, I'm sorry, I'm still new using ROS. I wanted to ask where does the file saved?

@Petros626
Copy link

Hi, Is there a way to republish converted jpeg to a certain topic? Using this program as a real-time converter? Thanks.

should be, you could publish the saved image

@asps946701
Copy link

asps946701 commented Jul 26, 2022

Hello, I'm sorry, I'm still new using ROS. I wanted to ask where does the file saved?

Image location in your "Catkin_make" folder that you uing "Catkin_make" command

@Yuan-Quan
Copy link

I need to play back the rosbag at a slower speed to capture all the frames, or some of them will be lost. Is there a more elegant solution?

@Petros626
Copy link

I need to play back the rosbag at a slower speed to capture all the frames, or some of them will be lost. Is there a more elegant solution?

I think on the ros Wiki, there a Parameter where you can adjust the playback speed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment