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

Charence's profile - activity

2016-09-12 05:13:36 -0500 received badge  Nice Question (source)
2013-09-11 20:19:36 -0500 received badge  Taxonomist
2012-10-02 08:43:22 -0500 received badge  Famous Question (source)
2012-10-02 08:43:22 -0500 received badge  Notable Question (source)
2012-09-04 04:42:57 -0500 received badge  Famous Question (source)
2012-09-04 04:42:57 -0500 received badge  Popular Question (source)
2012-09-04 04:42:57 -0500 received badge  Notable Question (source)
2012-08-10 07:16:39 -0500 received badge  Necromancer (source)
2012-08-10 06:37:41 -0500 commented answer Latest RVIZ Fails to start using ROS Fuerte and Ubuntu 10.4

Sorry, I cannot see how your comment is helpful to the opening poster's question, to me or anybody else who recently came across this problem. I got this problem after doing an update. It appears that rviz in Fuerte just doesn't work in 10.04 and I believe it is beneficial to make others aware of it

2012-08-10 02:28:13 -0500 answered a question Latest RVIZ Fails to start using ROS Fuerte and Ubuntu 10.4

I have encountered the same problem!!

I believe an update to my ROS installation is the cause of the problem on Ubuntu 10.04 as you suspected. I have tried to reinstall ROS.

Since nobody else has raised this issue yet, I suppose it is just a problem with 10.04? If so, upgrading to a later release may help. However, I'm not able to upgrade my work PC to 11.10 or 12.04 yet.

2012-07-25 09:57:48 -0500 received badge  Popular Question (source)
2011-11-23 12:26:26 -0500 received badge  Nice Answer (source)
2011-09-06 04:22:08 -0500 received badge  Scholar (source)
2011-09-06 04:22:08 -0500 marked best answer Exporting compressed video

This should work:

$ rosrun image_view extract_images image:=/gscam/image_raw _image_transport:=compressed
2011-09-05 07:23:03 -0500 received badge  Editor (source)
2011-09-05 07:21:59 -0500 asked a question Exporting compressed video

I followed the linked image and video data export tutorial: http://www.ros.org/wiki/rosbag/Tutorials/Exporting%20image%20and%20video%20data

However, I only save the compressed video to the bag file. From the following warning and error, I can see that I set an incorrect topic /gscam/image_raw/compressed, however, /gscam/image_raw only obviously would not work because only the compressed topic is published.

[ WARN] [1314815531.598786851]: [image_transport] It looks like you are trying to subscribe directly to a transport-specific image topic '/gscam/image_raw/compressed', in which case you will likely get a connection error. Try subscribing to the base topic '/gscam/image_raw' instead with parameter ~image_transport set to 'compressed' (on the command line, _image_transport:=compressed). See http://ros.org/wiki/image_transport for details.

[ERROR] [1314815532.042773170]: Client [/extract] wants topic /gscam/image_raw/compressed to have datatype/md5sum [sensor_msgs/Image/060021388200f6f0f447d0fcd9c64743], but our version has [sensor_msgs/CompressedImage/8f7a12909da2c9d3332d540a0977563f]. Dropping connection

My question is, how can I specify to export the compressed video stream?

Many Thanks!

2011-07-29 01:35:04 -0500 commented answer Duplicate images using GSCAM
This page has some more info: http://www.100fps.com/
2011-07-28 06:09:55 -0500 received badge  Student (source)
2011-07-28 06:09:54 -0500 received badge  Teacher (source)
2011-07-28 06:09:54 -0500 received badge  Self-Learner (source)
2011-07-28 05:32:02 -0500 answered a question getting video from canon vc-c50i camera and sensoray framegrabber

Try video/x-raw-yuv or put ffmpegcolorspace as the last parameter.

2011-07-28 05:29:56 -0500 answered a question Duplicate images using GSCAM

After some more searching, I believe I need to perform some kind of interlacing to alternate between the images from the top field and bottom field. Haven't figured out how to do that yet..

Meanwhile, I have resorted to cropping and resizing. I'm sure this is wrong, but I'm doing this until I figure out how to interlace the video.

GSCAM_CONFIG="v4l2src device=/dev/video0 ! videocrop top=0 left=0 right=0 bottom=288 ! videoscale ! video/x-raw-yuv,width=720,height=576 ! ffmpegcolorspace"
2011-07-28 00:34:39 -0500 received badge  Supporter (source)
2011-07-28 00:05:50 -0500 asked a question Duplicate images using GSCAM

Hi,

I am trying to use GSCAM to capture video from a composite video input through a ViewCast Osprey 230 analogue video capture card.

I have set GSCAM_CONFIG to:

GSCAM_CONFIG="v4l2src device=/dev/video0 ! video/x-raw-rgb ! ffmpegcolorspace"

And viewing the video through image_view

rosrun image_view image_view image:=/gscam/image_view

The problem is the image is duplicated. I only get this problem running when using gscam and the capture card, a USB webcam I have tested works fine. I presume that I need to alter GSCAM_CONFIG but I have not been able to find the correct configuration yet.

Screenshot of my problem: Duplicate images

Any help would be much appreciated!

Thanks