导航

    蓝鲸ROS机器人论坛

    • 注册
    • 登录
    • 搜索
    • 版块
    • 话题
    • 热门
    ROS交流群
    ROS Group
    产品服务
    Product Service
    开源代码库
    Github
    官网
    Official website
    技术交流
    Technological exchanges
    激光雷达
    LIDAR
    ROS教程
    ROS Tourials
    深度学习
    Deep Learning
    机器视觉
    Computer Vision

    xiaoqiang tutorial (8) kinect v1 ROS driver test and installation

    产品服务
    1
    1
    1215
    正在加载更多帖子
    • 从旧到新
    • 从新到旧
    • 最多赞同
    回复
    • 在新帖中回复
    登录后回复
    此主题已被删除。只有拥有主题管理权限的用户可以查看。
    • weijiz
      weijiz 最后由 weijiz 编辑

      Xiaoqiang Homepage

      kinect v1 ROS driver test and installation

      Xiaoqiang outputs a 12V power supply (DC head, labeled “kinect power supply”) for kinect power supply.

      1. libfreenect test

      Connect the Xiaoqiang host with monitor and keyboard and open a new terminal input on the Xiaoqiang host

      freenect-glview
      

      You can see the similar figure below

      0_1536152105142_897c601a-77a9-487b-a4b3-3475dd8a5755-image.png

      2. ROS drive test

      Close the program in step 1, open a new terminal, use freenect_launch to start the relevant kinect node

      roslaunch freenect_launch  freenect-xyz.launch
      

      Open a new window to open rviz

      rviz
      

      Select the content to be displayed, such as kinect rgb image and depth point cloud, the display result is as follows

      0_1536152163316_dd9b6ae5-29d5-4828-8ea2-685b92294155-image.png

      The settings of kienct functions is in /home/xiaoqiang/Documents/ros/src/freenect_stack/freenect_launch/launch/examples/freenect-xyz.launch

      <launch>
        <include file="$(find freenect_launch)/launch/freenect.launch">
          <arg name="camera"                          value="kinect" />
          <arg name="motor_processing"                value="true" />
          <arg name="audio_processing"                value="false" />
          <arg name="rgb_processing"                  value="true" />
          <arg name="ir_processing"                   value="false" />
          <arg name="depth_processing"                value="true" />
          <arg name="depth_registered_processing"     value="false" />
          <arg name="disparity_processing"            value="false" />
          <arg name="disparity_registered_processing" value="false" />
          <arg name="num_worker_threads"              value="4" />
        </include>
      </launch>
      

      Turn on or off the feature by setting true or false

      3. The following describes the ros driver installation procedure of kienct v1

      If you use xiaoqiang system image, then you don’t need to install the following drivers. These drivers were already install.

      Need to install three software:

      a.libfreenect

      b.rgbd_launch

      c.freenect_stack

      a. libfreenect

      First connect the kinect v1 to the xiaoqiang host, then open a terminal and enter the following code

      cd Documents
      
      sudo apt-get install git-core cmake freeglut3-dev pkg-config build-essential libxmu-dev libxi-dev libusb-1.0-0-dev
      
      git clone git://github.com/OpenKinect/libfreenect.git
      cd libfreenect
      mkdir build
      cd build
      
      //The key point is, the following configuration will enable kinect audio and solve the installation path problem
      
      cmake .. -DCMAKE_INSTALL_RPATH:STRING="/usr/local/bin;/usr/local/lib" -DBUILD_REDIST_PACKAGE=OFF
      
      make
      sudo make install
      sudo ldconfig /usr/local/lib64/
      sudo freenect-glview
      

      You should see the output image of the kinect now , and then configure the peripheral privilege configuration

      0_1536152305566_f08b0f32-e20e-4929-9c75-881e8c3eda6a-image.png

      sudo adduser $xiaoqiang video
      #Please replace xiaoqiang with your own computer's account name
      

      Add a udev rule, first open the 51-kinect.rules file

      sudo gedit /etc/udev/rules.d/51-kinect.rules
      

      Copy the contents below and save and exit

      # ATTR{product}=="Xbox NUI Motor"
      SUBSYSTEM=="usb", ATTR{idVendor}=="045e", ATTR{idProduct}=="02b0", MODE="0666"
      # ATTR{product}=="Xbox NUI Audio"
      SUBSYSTEM=="usb", ATTR{idVendor}=="045e", ATTR{idProduct}=="02ad", MODE="0666"
      # ATTR{product}=="Xbox NUI Camera"
      SUBSYSTEM=="usb", ATTR{idVendor}=="045e", ATTR{idProduct}=="02ae", MODE="0666"
      # ATTR{product}=="Xbox NUI Motor"
      SUBSYSTEM=="usb", ATTR{idVendor}=="045e", ATTR{idProduct}=="02c2", MODE="0666"
      # ATTR{product}=="Xbox NUI Motor"
      SUBSYSTEM=="usb", ATTR{idVendor}=="045e", ATTR{idProduct}=="02be", MODE="0666"
      # ATTR{product}=="Xbox NUI Motor"
      SUBSYSTEM=="usb", ATTR{idVendor}=="045e", ATTR{idProduct}=="02bf", MODE="0666"
      

      After logging off the user and reentering the system, you can now enable kinect directly without sudo.

      freenect-glview
      

      b. Install rgbd_launch

      rgbd_launch contains generic launch files required by the driver installation package openni_launch or freenect_launch.
      There are two main launch files:

      1. processing.launch.xml:Install a series of nodelets to process data from the RGB-D driver openni_camera or freenect_camera, You can also set parameters to simplify processing nodelets images.
      2. kinect_frames.launch:Install the tf tree for kinect. The file can also be started internally from openni_launch or freenect_launch.

      The rgbd_launch file contains multiple distributed launch files. But only processing.launch.xml can be modified externally.

      cd ~/Documents/ros/src
      git clone  https://github.com/ros-drivers/rgbd_launch.git
      cd ..
      catkin_make
      

      c. Install freenect_stack

      cd ~/Documents/ros/src
      git clone  https://github.com/BlueWhaleRobot/freenect_stack.git
      cd ..
      catkin_make
      

      d. Driver installation is complete, you can now use kinect in ROS, for example, in rviz view kinect output point cloud, refer to step 2 at the beginning of this section.

      Xiaoqiang Homepage
      Back To Index

      1 条回复 最后回复 回复 引用 0
      • 1 / 1
      • First post
        Last post
      Copyright © 2015-2023 BlueWhale community