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

radisc's profile - activity

2020-07-20 07:43:57 -0500 received badge  Notable Question (source)
2020-07-20 07:43:57 -0500 received badge  Famous Question (source)
2020-07-20 07:43:57 -0500 received badge  Popular Question (source)
2019-10-29 11:16:28 -0500 asked a question Execution with roslaunch <machine> tag is extremely slow on jetson nano

Execution with roslaunch <machine> tag is extremely slow on jetson nano Hello, i'm trying to launch two processes

2019-10-29 11:12:07 -0500 asked a question roslaunch process with <machine> tag extremely slow on jetson nano

roslaunch process with <machine> tag extremely slow on jetson nano Hello, i'm trying to launch two processes on a

2019-03-25 09:33:57 -0500 received badge  Notable Question (source)
2019-03-25 09:33:57 -0500 received badge  Famous Question (source)
2016-11-30 22:24:51 -0500 received badge  Popular Question (source)
2016-11-02 04:33:23 -0500 asked a question Is there a way to subscribe to a compressed image topic with stereo_image_proc?

As from the title, i attached a stereo camera to a raspberrypi, but i want to run the stereo matching algorithm on a wifi connected PC, of course the wifi bandwidth is not enough, so i have terrible lag.

So, how can i subscribe to the compressed topics with stereo_image_proc?

Thank you very much

2016-11-02 04:27:10 -0500 commented answer Minoru 3D webcam calibration ros indigo

Thank you very much, the "--approximate" flag worked! (Sorry for the ale answer)

2015-05-10 21:15:05 -0500 received badge  Student (source)
2014-11-12 06:02:23 -0500 received badge  Famous Question (source)
2014-10-22 12:14:22 -0500 received badge  Notable Question (source)
2014-10-19 14:45:01 -0500 received badge  Popular Question (source)
2014-10-19 10:58:35 -0500 received badge  Editor (source)
2014-10-16 11:42:56 -0500 asked a question Minoru 3D webcam calibration ros indigo

Hi everyone,

i just bought a minoru 3d webcam to try using it as a low cost RGBD sensor, i'm working in ros indigo, i tried calibrationg the camera with the cameracalibrator.py util, the problem is that no matter how much frames i take the extrinsic calibration always fail because with the driver i was using there is too much lag between the frames of the two channels ( the camera is not synchronized ).

I tried several other drivers and the best so far ( the one that gives the best visual results in terms of lag ) seems the "usb_cam" driver. But if i use this driver the cameracalibrator.py node can't start i think this problem is related to the "set_camera_info" service as described in this link:

http://www.iheartrobotics.com/2010/05...

The fix they suggest in the python code is already present in my version but still it doesn't work. I don't need that service, since i just need to get calibration matrices i can set manually the calibration files. What can i do? Thank you all in advance!

EDIT: Here is my launch file:

<launch>

<node name="left_camera" pkg="usb_cam" type="usb_cam_node" output="screen" >

    <param name="video_device" value="/dev/video1" />
    <param name="image_width" value="320" />
    <param name="image_height" value="240" />
    <param name="pixel_format" value="yuyv" />
    <param name="camera_frame_id" value="usb_cam" />
    <param name="io_method" value="mmap"/>

</node>

<node name="right_camera" pkg="usb_cam" type="usb_cam_node" output="screen" >

    <param name="video_device" value="/dev/video2" />
    <param name="image_width" value="320" />
    <param name="image_height" value="240" />
    <param name="pixel_format" value="yuyv" />
    <param name="camera_frame_id" value="usb_cam" />
    <param name="io_method" value="mmap"/>

</node>

</launch>

And this is the command i use to launch the camera calibrator:

    rosrun camera_calibration cameracalibrator.py --size 9x6 --square 0.011 right:=/right_camera/image_raw left:=/left_camera/image_raw right_camera:=/right_camera left_camera:=/left_camera --no-service-check

And when i do so, simply nothing happens, no errors, no crashes. Maybe it keeps waiting for something?

This is the output of the rostopic list command:

/left_camera/camera_info
/left_camera/image_raw
/left_camera/image_raw/compressed
/left_camera/image_raw/compressed/parameter_descriptions
/left_camera/image_raw/compressed/parameter_updates
/left_camera/image_raw/compressedDepth
/left_camera/image_raw/compressedDepth/parameter_descriptions
/left_camera/image_raw/compressedDepth/parameter_updates
/left_camera/image_raw/theora
/left_camera/image_raw/theora/parameter_descriptions
/left_camera/image_raw/theora/parameter_updates
/right_camera/camera_info
/right_camera/image_raw
/right_camera/image_raw/compressed
/right_camera/image_raw/compressed/parameter_descriptions
/right_camera/image_raw/compressed/parameter_updates
/right_camera/image_raw/compressedDepth
/right_camera/image_raw/compressedDepth/parameter_descriptions
/right_camera/image_raw/compressedDepth/parameter_updates
/right_camera/image_raw/theora
/right_camera/image_raw/theora/parameter_descriptions
/right_camera/image_raw/theora/parameter_updates
/rosout
/rosout_agg

EDIT2:

I've edited my launch file to use uvc_camera:

<launch>
<node pkg="uvc_camera" type="uvc_stereo_node" name="uvc_camera_stereo">

    <param name="width" type="int" value="640" />
    <param name="height" type="int" value="480" />
    <param name="fps" type="int" value="20" />
    <param name="frame" type="string" value="minoru" />

    <!-- other supported params: auto_exposure, exposure_absolute, brightness, power_line_frequency -->

    <param name="left/device" type="string" value="/dev/video1" />
    <param name="right/device" type="string" value="/dev/video2" />
    <param name="left/camera_info_url" type="string" value="file://$(find uvc_camera)/example-left.yaml" />
    <param name="right/camera_info_url" type="string" value ...
(more)
2013-09-28 20:54:49 -0500 received badge  Good Answer (source)
2013-04-13 15:42:01 -0500 received badge  Nice Answer (source)
2013-04-04 02:20:12 -0500 received badge  Teacher (source)
2013-04-04 01:53:20 -0500 answered a question roscore fails to start after latest update? (precise, groovy, AMD64)

I had your exact same problem, i simply upgraded my ubuntu 12.10 groovy packages to the very last version and now everything works fine again