ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Found a solution:

    var imageTopic = new ROSLIB.Topic({
    ros : ros,
    name : '/camera/image/compressed',
    messageType : 'sensor_msgs/CompressedImage'
});

the compressed image can be retrieved via:

var imagedata = "data:image/jpg;base64," + message.data;
click to hide/show revision 2
No.2 Revision

Found a solution:

 var imageTopic = new ROSLIB.Topic({
    ros : ros,
    name : '/camera/image/compressed',
    messageType : 'sensor_msgs/CompressedImage'
});

the compressed image can be retrieved via:

var imagedata = "data:image/jpg;base64," + message.data;