Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
Collapse
Brand Logo

ModalAI Forum

  1. ModalAI Support Forum
  2. VOXL Dev Drones
  3. Starling & Starling 2
  4. VOXL MPA_to_ROS rostopics not subscribing to anything

VOXL MPA_to_ROS rostopics not subscribing to anything

Scheduled Pinned Locked Moved Starling & Starling 2
14 Posts 3 Posters 3.2k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Darshit DesaiD Offline
    Darshit DesaiD Offline
    Darshit Desai
    Regular
    wrote on last edited by
    #1

    Hi I went through the voxl2 custom ros documentation for the starling drone. I started up the voxl mpa to ros script successfully as shown below:
    voxl2.png

    I than go to my local computer and set the ros master uri and ros IP. I am able to see the rostopic list but when I try to listen the topics by typing rostopic hz /tof_depth it says no data packets present as seen in the image below:
    rostopicmypc.png

    ModeratorM 1 Reply Last reply
    0
    • Darshit DesaiD Darshit Desai

      Hi I went through the voxl2 custom ros documentation for the starling drone. I started up the voxl mpa to ros script successfully as shown below:
      voxl2.png

      I than go to my local computer and set the ros master uri and ros IP. I am able to see the rostopic list but when I try to listen the topics by typing rostopic hz /tof_depth it says no data packets present as seen in the image below:
      rostopicmypc.png

      ModeratorM Offline
      ModeratorM Offline
      Moderator
      ModalAI Team
      wrote on last edited by
      #2

      @Darshit-Desai that service is setup so that it does not publish anything without a subscriber. maybe try to record a rosbag to see if you're getting data?

      ben grocholskyB 1 Reply Last reply
      0
      • ModeratorM Moderator

        @Darshit-Desai that service is setup so that it does not publish anything without a subscriber. maybe try to record a rosbag to see if you're getting data?

        ben grocholskyB Offline
        ben grocholskyB Offline
        ben grocholsky
        Contributor
        wrote on last edited by
        #3

        rostopic hz /tracking should subscribe to the topic and work as you expected.
        e.g. for me:
        799a4432-e73f-4686-8085-83cb6ec5a0ef-image.png

        I've seen two things that might be happening:

        1. The voxl-camera-service has stopped running. Check with voxl-inspect-services , voxl-inspect-qvio, systemctl status voxl-camera-service.

        2. Your environment variables might not be set right for ROS1 remote message transport. Setting ROS_MASTER_URI on your laptop to point to the master running on the voxl is enough to discover ROS1 topic names. Two more variables are needed to be set to get message transport working ROS_IP and ROS_HOSTNAME

        Here's an example that works for me. Adjust it to match the IP addresses for your voxl2, laptop, and the ROS1 version you're running on your laptop. Select the image you want to view in the rqt_image_view GUI.

        Script on voxl2: start_mpa_to_ros1.sh

        #!/bin/bash
        source /opt/ros/melodic/setup.bash
        
        voxlIP=`hostname -I | awk '{print $1}'`
        echo "VOXL IP is: " $voxlIP
        export ROS_IP=$voxlIP
        echo "ROS_IP is: " $ROS_IP
        export ROS_HOSTNAME=$voxlIP
        echo "ROS_HOSTNAME is: " $ROS_HOSTNAME
        echo "ROS_MASTER_URI is: " $ROS_MASTER_URI
        
        roslaunch voxl_mpa_to_ros voxl_mpa_to_ros.launch
        

        Script on laptop: start_rqt_imageview.sh

        #!/bin/bash
        # change these to match the computer connecting to VOXL ROS1
        MasterIP=192.168.1.100
        MyIP=192.168.1.101
        ROS_DIST=noetic
        
        # set environment variables and start rqt_image_view
        source /opt/ros/$ROS_DIST/setup.bash
        
        export ROS_IP=$MyIP
        export ROS_HOSTNAME=$MyIP
        export ROS_MASTER_URI=http://$MasterIP:11311
        
        rosrun rqt_image_view rqt_image_view
        
        Darshit DesaiD 1 Reply Last reply
        0
        • ben grocholskyB ben grocholsky

          rostopic hz /tracking should subscribe to the topic and work as you expected.
          e.g. for me:
          799a4432-e73f-4686-8085-83cb6ec5a0ef-image.png

          I've seen two things that might be happening:

          1. The voxl-camera-service has stopped running. Check with voxl-inspect-services , voxl-inspect-qvio, systemctl status voxl-camera-service.

          2. Your environment variables might not be set right for ROS1 remote message transport. Setting ROS_MASTER_URI on your laptop to point to the master running on the voxl is enough to discover ROS1 topic names. Two more variables are needed to be set to get message transport working ROS_IP and ROS_HOSTNAME

          Here's an example that works for me. Adjust it to match the IP addresses for your voxl2, laptop, and the ROS1 version you're running on your laptop. Select the image you want to view in the rqt_image_view GUI.

          Script on voxl2: start_mpa_to_ros1.sh

          #!/bin/bash
          source /opt/ros/melodic/setup.bash
          
          voxlIP=`hostname -I | awk '{print $1}'`
          echo "VOXL IP is: " $voxlIP
          export ROS_IP=$voxlIP
          echo "ROS_IP is: " $ROS_IP
          export ROS_HOSTNAME=$voxlIP
          echo "ROS_HOSTNAME is: " $ROS_HOSTNAME
          echo "ROS_MASTER_URI is: " $ROS_MASTER_URI
          
          roslaunch voxl_mpa_to_ros voxl_mpa_to_ros.launch
          

          Script on laptop: start_rqt_imageview.sh

          #!/bin/bash
          # change these to match the computer connecting to VOXL ROS1
          MasterIP=192.168.1.100
          MyIP=192.168.1.101
          ROS_DIST=noetic
          
          # set environment variables and start rqt_image_view
          source /opt/ros/$ROS_DIST/setup.bash
          
          export ROS_IP=$MyIP
          export ROS_HOSTNAME=$MyIP
          export ROS_MASTER_URI=http://$MasterIP:11311
          
          rosrun rqt_image_view rqt_image_view
          
          Darshit DesaiD Offline
          Darshit DesaiD Offline
          Darshit Desai
          Regular
          wrote on last edited by
          #4

          @ben-grocholsky Thanks that helped me do it.

          My tof_ir, tof_conf image feed is rotated 90 degrees counter clockwise when the drone is in a normal position, is there way to change that rotation

          2d7b7216-09fe-4d10-8fdc-902a2ce2afb0-image.png

          Darshit DesaiD 1 Reply Last reply
          0
          • Darshit DesaiD Darshit Desai

            @ben-grocholsky Thanks that helped me do it.

            My tof_ir, tof_conf image feed is rotated 90 degrees counter clockwise when the drone is in a normal position, is there way to change that rotation

            2d7b7216-09fe-4d10-8fdc-902a2ce2afb0-image.png

            Darshit DesaiD Offline
            Darshit DesaiD Offline
            Darshit Desai
            Regular
            wrote on last edited by
            #5

            @Darshit-Desai @Moderator Can anyone reply on this post?

            Darshit DesaiD 1 Reply Last reply
            0
            • Darshit DesaiD Darshit Desai

              @Darshit-Desai @Moderator Can anyone reply on this post?

              Darshit DesaiD Offline
              Darshit DesaiD Offline
              Darshit Desai
              Regular
              wrote on last edited by Darshit Desai
              #6

              @Darshit-Desai Can anyone help with this? @tom

              ben grocholskyB 1 Reply Last reply
              0
              • Darshit DesaiD Darshit Desai

                @Darshit-Desai Can anyone help with this? @tom

                ben grocholskyB Offline
                ben grocholskyB Offline
                ben grocholsky
                Contributor
                wrote on last edited by
                #7

                @Darshit-Desai this is a more generic ROS tf transform network question than anything specific to ModalAI devices. You can get any result you'd like by adding appropriate frames to map or vehicle in the tf tree. For example, since rviz is hard coded to expect z axis upwards and everything is easier with z axis down, I'll attach an ENU frame to every fixed map NED frame and vehicle carried body FRD frame. That allows for all algorithms to be implemented in NED/FRD and still use ROS visualization by selecting ENU frames as fixed and view.

                Check out the tf documentation http://wiki.ros.org/tf2

                The static transform publisher is a quick way to test changes. Then you'll want to explore using http://wiki.ros.org/urdf

                Darshit DesaiD 1 Reply Last reply
                0
                • ben grocholskyB ben grocholsky

                  @Darshit-Desai this is a more generic ROS tf transform network question than anything specific to ModalAI devices. You can get any result you'd like by adding appropriate frames to map or vehicle in the tf tree. For example, since rviz is hard coded to expect z axis upwards and everything is easier with z axis down, I'll attach an ENU frame to every fixed map NED frame and vehicle carried body FRD frame. That allows for all algorithms to be implemented in NED/FRD and still use ROS visualization by selecting ENU frames as fixed and view.

                  Check out the tf documentation http://wiki.ros.org/tf2

                  The static transform publisher is a quick way to test changes. Then you'll want to explore using http://wiki.ros.org/urdf

                  Darshit DesaiD Offline
                  Darshit DesaiD Offline
                  Darshit Desai
                  Regular
                  wrote on last edited by Darshit Desai
                  #8

                  @ben-grocholsky It shows up the same in VOXL PORTAL too.
                  Is there a way to get camera intrinsic Matrix of the ToF camera. Also, if I want to align the depth image with the RGB image how do I do that?

                  Darshit DesaiD 2 Replies Last reply
                  0
                  • Darshit DesaiD Darshit Desai

                    @ben-grocholsky It shows up the same in VOXL PORTAL too.
                    Is there a way to get camera intrinsic Matrix of the ToF camera. Also, if I want to align the depth image with the RGB image how do I do that?

                    Darshit DesaiD Offline
                    Darshit DesaiD Offline
                    Darshit Desai
                    Regular
                    wrote on last edited by
                    #9

                    @Darshit-Desai I wanted to ask one more follow up to this question? The datasheet in voxl-documentation says the PMD TOF runs at 45 fps for ranging distances less then 1 metres. Is there a way to set that?

                    Darshit DesaiD 1 Reply Last reply
                    0
                    • Darshit DesaiD Darshit Desai

                      @Darshit-Desai I wanted to ask one more follow up to this question? The datasheet in voxl-documentation says the PMD TOF runs at 45 fps for ranging distances less then 1 metres. Is there a way to set that?

                      Darshit DesaiD Offline
                      Darshit DesaiD Offline
                      Darshit Desai
                      Regular
                      wrote on last edited by
                      #10

                      @Darshit-Desai @ben-grocholsky @Moderator

                      ModeratorM 1 Reply Last reply
                      0
                      • Darshit DesaiD Darshit Desai

                        @Darshit-Desai @ben-grocholsky @Moderator

                        ModeratorM Offline
                        ModeratorM Offline
                        Moderator
                        ModalAI Team
                        wrote on last edited by
                        #11

                        @Darshit-Desai No, there is no current way to set that

                        1 Reply Last reply
                        0
                        • Darshit DesaiD Darshit Desai

                          @ben-grocholsky It shows up the same in VOXL PORTAL too.
                          Is there a way to get camera intrinsic Matrix of the ToF camera. Also, if I want to align the depth image with the RGB image how do I do that?

                          Darshit DesaiD Offline
                          Darshit DesaiD Offline
                          Darshit Desai
                          Regular
                          wrote on last edited by
                          #12

                          @Darshit-Desai said in VOXL MPA_to_ROS rostopics not subscribing to anything:

                          @ben-grocholsky It shows up the same in VOXL PORTAL too.
                          Is there a way to get camera intrinsic Matrix of the ToF camera. Also, if I want to align the depth image with the RGB image how do I do that?

                          @Moderator

                          ben grocholskyB Darshit DesaiD 2 Replies Last reply
                          0
                          • Darshit DesaiD Darshit Desai

                            @Darshit-Desai said in VOXL MPA_to_ROS rostopics not subscribing to anything:

                            @ben-grocholsky It shows up the same in VOXL PORTAL too.
                            Is there a way to get camera intrinsic Matrix of the ToF camera. Also, if I want to align the depth image with the RGB image how do I do that?

                            @Moderator

                            ben grocholskyB Offline
                            ben grocholskyB Offline
                            ben grocholsky
                            Contributor
                            wrote on last edited by
                            #13

                            @Darshit-Desai the recommendation to learn about tf, urdf, and xacro in ROS was because that's a way to achieve what you're asking for. If you get the launch and config files right then ROS tools such as rviz will do what ever you want without writing any code.

                            1 Reply Last reply
                            0
                            • Darshit DesaiD Darshit Desai

                              @Darshit-Desai said in VOXL MPA_to_ROS rostopics not subscribing to anything:

                              @ben-grocholsky It shows up the same in VOXL PORTAL too.
                              Is there a way to get camera intrinsic Matrix of the ToF camera. Also, if I want to align the depth image with the RGB image how do I do that?

                              @Moderator

                              Darshit DesaiD Offline
                              Darshit DesaiD Offline
                              Darshit Desai
                              Regular
                              wrote on last edited by
                              #14

                              @Darshit-Desai said in VOXL MPA_to_ROS rostopics not subscribing to anything:

                              Is there a way to get camera intrinsic Matrix of the ToF camera. Also, if I want to align the depth image with the RGB image how do I do that?

                              Hi sorry, I wanted to ask about the intrinsics that was highlighted by mistake. @ben-grocholsky

                              1 Reply Last reply
                              0

                              Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                              Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                              With your input, this post could be even better 💗

                              Register Login
                              Reply
                              • Reply as topic
                              Log in to reply
                              • Oldest to Newest
                              • Newest to Oldest
                              • Most Votes


                              ModalAI
                              Categories Recent Tags ModalAI.com Docs
                              © 2026 ModalAI® · Accelerating autonomy for smaller, smarter, safer drones · Powered by NodeBB
                              • Login

                              • Don't have an account? Register

                              • Login or register to search.
                              • First post
                                Last post
                              0
                              • Categories
                              • Recent
                              • Tags
                              • Popular
                              • Users
                              • Groups