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

robwa's profile - activity

2013-11-06 13:36:04 -0500 received badge  Famous Question (source)
2013-11-06 13:36:04 -0500 received badge  Popular Question (source)
2013-11-06 13:36:04 -0500 received badge  Notable Question (source)
2012-09-24 12:06:06 -0500 received badge  Notable Question (source)
2012-09-24 12:06:06 -0500 received badge  Famous Question (source)
2012-09-06 15:47:20 -0500 received badge  Notable Question (source)
2012-09-06 15:47:20 -0500 received badge  Famous Question (source)
2012-02-24 05:18:22 -0500 received badge  Popular Question (source)
2011-11-20 04:12:37 -0500 received badge  Popular Question (source)
2011-09-02 12:04:47 -0500 marked best answer Capture for Kinect Camera

Hi, to open the kinect camera with OpenCV you need to use this:

VideoCapture capture( CV_CAP_OPENNI );

2011-09-02 11:56:45 -0500 marked best answer cvCaptureFromCAM

if you use the openni_kinect node to publish the data from the kinect, you could subscribe to one of the camera topics(/camera/rgb/image_color or /camera/rgb/image_mono). this would give you and image message which can be converted to an opencv iplimage using the cv_bridge package (http://www.ros.org/wiki/cv_bridge)

2011-08-02 11:35:22 -0500 marked best answer camera kinect/video
2011-07-26 10:26:13 -0500 asked a question camera kinect/video

Thanks, that I have done, now I want to save the images I have listened to from to video using the video writer class, VideoCapture cap(0); // open the default camera However, I don't want to use the default camera (webcam), instead the kinect camera. I have tried -1, but still won't work. So, If someone has opened a capture using KINECT camera, that would be great if they shared with me how they did it. many thanks

2011-07-26 10:25:08 -0500 asked a question Capture for Kinect Camera

Thanks, that I have done, now I want to save the images I have listened to from to video using the video writer class,

VideoCapture cap(0); // open the default camera

However, I don't want to use the default camera (webcam), instead the kinect camera. I have tried -1, but still won't work. So, If someone has opened a capture using KINECT camera, that would be great if they shared with me how they did it. many thanks

2011-07-25 12:51:16 -0500 asked a question cvCaptureFromCAM

Hello There, I am trying to save a stream of images from KInect camera. MY first line of code is: CvCapture* capture = cvCaptureFromCAM(-1)

I passed -1 so that It can search for the camera because I don't know the index for KInect Camera. Can someone help me find out what it is or another method used in the past. Many thanks

2011-07-07 06:42:24 -0500 asked a question Project a 3d point onto an image

I am trying to post a point in the world obtained using a kinect camera, and project it onto the image. However it gives me back point out of the normal range of a CV image, 640X480. I am using the function

  tf::Point pt = transform.getOrigin();
  cv::Point3d pt_cv(pt.x(), pt.y(), pt.z());
  cv::Point2d uv;
  cam_model_.project3dToPixel(pt_cv, uv);
2011-06-24 16:41:43 -0500 asked a question what topic is my nodelet listening to

Hi There, I am new at using ROS and Kinet. Right now I can do rostopic echo /tf and notice that there are frames being published. I however have another rospackage in which I have written a simple listener to listener to the frames published. I would like to know how to link openni_camera and my personal package, because right now it does not compile.

Thanks