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

olzhas's profile - activity

2015-03-07 07:32:32 -0500 commented question Segfault on roslaunch rgbdslam - PCL 1.7 related

I have the same thing, with libpcl.

2014-06-02 06:37:49 -0500 received badge  Editor (source)
2014-05-30 22:20:24 -0500 commented answer kinect not detected

Nope, I tested it on Ubuntu 12.04 with openni2 2.2.0.33 (https://launchpad.net/~eighthave/+archive/openni) also I recompiled the openni2_* packages. and It worked.

2014-05-29 23:58:19 -0500 commented answer kinect not detected

unless you install libFreenectDriver, which is a libfreenect-based driver for OpenNI2 https://github.com/OpenKinect/libfreenect/tree/master/OpenNI2-FreenectDriver

2014-05-29 19:02:28 -0500 received badge  Enthusiast
2014-05-28 18:04:59 -0500 answered a question kinect not detected

Hi,

Kinect for windows was discussed here

http://answers.ros.org/question/12876...

2014-05-28 00:43:17 -0500 received badge  Citizen Patrol (source)
2014-05-28 00:39:16 -0500 received badge  Supporter (source)
2014-05-26 05:17:35 -0500 received badge  Necromancer (source)
2014-05-26 05:17:35 -0500 received badge  Teacher (source)
2014-05-25 19:14:13 -0500 answered a question Kinect for Windows

A quite dumb way to resolve the problem.

# Prepare the catkin workspace for the libfreenect
source /opt/ros/hydro/setup.bash
mkdir -p ~/libfreenect_catkin_ws/src
cd ~/libfreenect_catkin_ws/src
catkin_init_workspace
cd ~/libfreenect_catkin_ws/
catkin_make
source devel/setup.bash

# Get the latest sources from the github repository
cd ~/libfreenect_catkin_ws/src/ 
git clone https://github.com/OpenKinect/libfreenect.git

# Grab the source of the freenect_stack
git clone https://github.com/ros-drivers/freenect_stack.git tmp
mv tmp/freenect_stack .
mv tmp/freenect_camera .
mv tmp/freenect_launch .
rm -rf tmp/

# catkinize the "vanilla" libfreenect sources
cd ~/libfreenect_catkin_ws/src/libfreenect/
wget -q https://raw.githubusercontent.com/ros-drivers-gbp/libfreenect-release/master/patches/package.xml

replace :{version} in package.xml file with the 0.4.3 or the up-to-date version to the moment of accessing this page.

Original File

<?xml version="1.0"?>
<package>
  <name>libfreenect</name>
  <version>:{version}</version>

Updated file

<?xml version="1.0"?>
<package>
  <name>libfreenect</name>
  <version>0.4.3</version>

After that install the required packages using rosdep

# Installing package dependencies
rosdep update
rosdep install libfreenect
sudo aptitude install ros-hydro-camera-info-manager ros-hydro-diagnostic-msgs ros-hydro-diagnostic-updater ros-hydro-dynamic-reconfigure

Now you can build the packages using catkin_make_isolated

# use sudo if needed
catkin_make_isolated
# change hydro if you are using different distribution
catkin_make_isolated --install --install-space=/opt/ros/hydro/
2014-05-25 18:28:59 -0500 answered a question Kinect for Windows

A quite dumb way to resolve the problem.

# Prepare the catkin workspace for the libfreenect
source /opt/ros/hydro/setup.bash
mkdir -p ~/libfreenect_catkin_ws/src
cd ~/libfreenect_catkin_ws/src
catkin_init_workspace
cd ~/libfreenect_catkin_ws/
catkin_make
source devel/setup.bash

# Get the latest sources from the github repository