ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
From Ask Ubuntu
To list all video devices picked up by the kernel
ls -ltrh /dev/video*
To list all devices attached to USB use
lsusb
; to list all devices attached to PCI uselspci
Once you identify which device is your webcam, start the usb_cam_node
node with
roslaunch usb_cam usb_cam-test.launch video_device:=<your-device>
where <your-device>
is your webcam.
2 | No.2 Revision |
To list all video devices picked up by the kernel
ls -ltrh /dev/video*
To list all devices attached to USB use
lsusb
; to list all devices attached to PCI uselspci
Once you identify which device is your webcam, start the usb_cam_node
node with
roslaunch usb_cam usb_cam-test.launch video_device:=<your-device>
where <your-device>
is your webcam.
3 | No.3 Revision |
From Ask Ubuntu:
To list all video devices picked up by the kernel
ls -ltrh /dev/video*
To list all devices attached to USB use
lsusb
; to list all devices attached to PCI uselspci
Once you identify which device is your webcam, start the usb_cam_node
node with
roslaunch usb_cam usb_cam-test.launch video_device:=<your-device>
where <your-device>
is your webcam.
4 | No.4 Revision |
From Ask Ubuntu:
To list all video devices picked up by the kernel
ls -ltrh /dev/video*
Once you identify which device is your webcam, start the usb_cam_node
node with
roslaunch usb_cam usb_cam-test.launch video_device:=<your-device>
where <your-device>
is your webcam.
Edit:
Try adding yourself to the user group
sudo usermod -a -G dialout $USER
Now, I found this by some googling.
5 | No.5 Revision |
From Ask Ubuntu:
To list all video devices picked up by the kernel
ls -ltrh /dev/video*
To list all devices attached to USB use
lsusb
; to list all devices attached to PCI uselspci
Once you identify which device is your webcam, start the usb_cam_node
node with
roslaunch usb_cam usb_cam-test.launch video_device:=<your-device>
where <your-device>
is your webcam.
Edit:
Try adding yourself to the user group
sudo usermod -a -G dialout $USER
Now, I found this by some googling.