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

Can a non-usb camera (mounted camera sensor) be published with topic & info?

asked 2014-11-25 08:34:44 -0500

makc gravatar image

Hi Experts,

I am naive to ROS and its environment. Forgive, if the solution is straight forward. As a task, i need to use a camera sensor (not a USB camera) mounted on my arm based target board. I need it to publish the camera info and topic, to be able to use as input to LSD-SLAM library which i am able to make it work on the board. I've come to know that if the camera node (/dev/video*) is available, using gscam, one can publish the topic and info and use the camera stream. Correct me if i am wrong.

However, to make things worse, my camera driver is tightly looped with userspace library, and does not gives anything out on /dev/video* node. The only way to access the camera output frame is to use some script which eventually returns frames as buffers. So, given the above scenario, is it possible to create and publish camera info and topic for which no camera node exists and the only way to get captured frame's data is through some function returning a frame-buffer?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2014-11-26 05:46:45 -0500

gvdhoorn gravatar image

Sure. In the end, all camera nodes that currently exist in ROS are just programs that retrieve frames from the underlying Linux device / frame buffer / IP / firewire connection or something similar.

You'll have to write something yourself though, as there doesn't seem to be an existing ROS camera driver for yor setup.

Just make sure you publish the right topics (at least image_raw and camera_info). You may want to look at existing nodes for inspiration.

edit flag offensive delete link more

Comments

it is also recommended to use image_transport as your image publisher rather then the typical ros publsiher

l0g1x gravatar image l0g1x  ( 2014-12-03 00:31:30 -0500 )edit

Question Tools

Stats

Asked: 2014-11-25 08:34:44 -0500

Seen: 397 times

Last updated: Nov 26 '14