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

ModalAI Forum

  1. ModalAI Support Forum
  2. Ask your questions right here!
  3. Image transmission between Trip2 and VOXL2

Image transmission between Trip2 and VOXL2

Scheduled Pinned Locked Moved Ask your questions right here!
9 Posts 3 Posters 1.3k Views 2 Watching
  • 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.
  • Ethan WuE Offline
    Ethan WuE Offline
    Ethan Wu
    Contributor
    wrote on last edited by
    #1

    Good afternoon,

    I am currently working on integrating a Trip2 camera with a voxl2 device, aiming to establish image streaming via Ethernet. However, I am encountering challenges as the voxl2 device does not recognize the Trip2 camera, despite a successful ping connection.

    In an effort to better understand the handling of UVC camera image information within the voxl2 server, I am interested in exploring relevant sections of the voxl2 codebase. Could you kindly guide me to specific resources or code segments, such as those in voxl-streamer, that would enhance my comprehension of how UVC camera data is processed on the voxl2 server?

    Furthermore, I am curious about the potential for modifying these code sections to achieve successful image transfer between the Trip2 camera and the voxl2 device. Your insights and guidance on this matter would be greatly appreciated.

    Thank you for your time and assistance.

    Eric KatzfeyE 1 Reply Last reply
    0
    • Ethan WuE Ethan Wu

      Good afternoon,

      I am currently working on integrating a Trip2 camera with a voxl2 device, aiming to establish image streaming via Ethernet. However, I am encountering challenges as the voxl2 device does not recognize the Trip2 camera, despite a successful ping connection.

      In an effort to better understand the handling of UVC camera image information within the voxl2 server, I am interested in exploring relevant sections of the voxl2 codebase. Could you kindly guide me to specific resources or code segments, such as those in voxl-streamer, that would enhance my comprehension of how UVC camera data is processed on the voxl2 server?

      Furthermore, I am curious about the potential for modifying these code sections to achieve successful image transfer between the Trip2 camera and the voxl2 device. Your insights and guidance on this matter would be greatly appreciated.

      Thank you for your time and assistance.

      Eric KatzfeyE Offline
      Eric KatzfeyE Offline
      Eric Katzfey
      ModalAI Team
      wrote on last edited by
      #2

      @Ethan-Wu UVC cameras use voxl-uvc-server in our system https://gitlab.com/voxl-public/voxl-sdk/services/voxl-uvc-server. You can certainly modify the code as you need for your application.

      Ethan WuE 1 Reply Last reply
      0
      • Eric KatzfeyE Eric Katzfey

        @Ethan-Wu UVC cameras use voxl-uvc-server in our system https://gitlab.com/voxl-public/voxl-sdk/services/voxl-uvc-server. You can certainly modify the code as you need for your application.

        Ethan WuE Offline
        Ethan WuE Offline
        Ethan Wu
        Contributor
        wrote on last edited by
        #3

        @Eric-Katzfey

        Hello,
        I changed the ethernet connection on my Trip2 camera to use HDMI converted to USB. After running voxl-uvc-server -l, the device information is detected, but when debugging, a segmentation fault is reported. Any idea what could be causing this? Here is the error information:

        voxl2:/$ voxl-uvc-server -f 5 -d
        
        loading config file
        Enabling debug messages
        =================================================================
        width:                            640
        height:                           480
        fps:                              5
        pipe_name:                        uvc
        ==============================================================
        voxl-uvc-server starting
        Image resolution 640x480, 5 fps chosen
        UVC initialized
        Device found
        Device opened
        uvc_get_stream_ctrl_format_size succeeded for format YUYV
        Streaming starting
        
        Segmentation fault:
        Fault thread: voxl-uvc-server(tid: 2617)
        Fault address: 0x7fae693000
        Access to this address is not allowed.
        Segmentation fault
        

        Any insights on what might be causing the segmentation fault would be appreciated.

        Eric KatzfeyE 1 Reply Last reply
        0
        • Ethan WuE Ethan Wu

          @Eric-Katzfey

          Hello,
          I changed the ethernet connection on my Trip2 camera to use HDMI converted to USB. After running voxl-uvc-server -l, the device information is detected, but when debugging, a segmentation fault is reported. Any idea what could be causing this? Here is the error information:

          voxl2:/$ voxl-uvc-server -f 5 -d
          
          loading config file
          Enabling debug messages
          =================================================================
          width:                            640
          height:                           480
          fps:                              5
          pipe_name:                        uvc
          ==============================================================
          voxl-uvc-server starting
          Image resolution 640x480, 5 fps chosen
          UVC initialized
          Device found
          Device opened
          uvc_get_stream_ctrl_format_size succeeded for format YUYV
          Streaming starting
          
          Segmentation fault:
          Fault thread: voxl-uvc-server(tid: 2617)
          Fault address: 0x7fae693000
          Access to this address is not allowed.
          Segmentation fault
          

          Any insights on what might be causing the segmentation fault would be appreciated.

          Eric KatzfeyE Offline
          Eric KatzfeyE Offline
          Eric Katzfey
          ModalAI Team
          wrote on last edited by
          #4

          @Ethan-Wu I really don't have any idea. Often when bringing up a new UVC camera there are issues that need to be debugged and resolved.

          Ethan WuE 2 Replies Last reply
          0
          • Eric KatzfeyE Eric Katzfey

            @Ethan-Wu I really don't have any idea. Often when bringing up a new UVC camera there are issues that need to be debugged and resolved.

            Ethan WuE Offline
            Ethan WuE Offline
            Ethan Wu
            Contributor
            wrote on last edited by
            #5

            @Eric-Katzfey Thank you for replying, now the problem is solved and I think is a hardware issue that leads to segmentation fault.

            1 Reply Last reply
            0
            • Eric KatzfeyE Eric Katzfey

              @Ethan-Wu I really don't have any idea. Often when bringing up a new UVC camera there are issues that need to be debugged and resolved.

              Ethan WuE Offline
              Ethan WuE Offline
              Ethan Wu
              Contributor
              wrote on last edited by
              #6

              @Eric-Katzfey Additionally, I apologize if my initial question was unclear. I understand that VOXL supports UVC type cameras. I'd like to know if cameras transmitted via an Ethernet adapter can be used on VOXL? Or would I need to make significant modifications to the code to achieve this?

              Ethan WuE 1 Reply Last reply
              0
              • Ethan WuE Ethan Wu

                @Eric-Katzfey Additionally, I apologize if my initial question was unclear. I understand that VOXL supports UVC type cameras. I'd like to know if cameras transmitted via an Ethernet adapter can be used on VOXL? Or would I need to make significant modifications to the code to achieve this?

                Ethan WuE Offline
                Ethan WuE Offline
                Ethan Wu
                Contributor
                wrote on last edited by
                #7

                @Ethan-Wu I just did some research to find out that it seems that Ethernet can't be treated like a UVC camera, right?

                ModeratorM Eric KatzfeyE 2 Replies Last reply
                0
                • Ethan WuE Ethan Wu

                  @Ethan-Wu I just did some research to find out that it seems that Ethernet can't be treated like a UVC camera, right?

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

                  @Ethan-Wu UVC is USB Video Device Class, Wikipedia

                  1 Reply Last reply
                  0
                  • Ethan WuE Ethan Wu

                    @Ethan-Wu I just did some research to find out that it seems that Ethernet can't be treated like a UVC camera, right?

                    Eric KatzfeyE Offline
                    Eric KatzfeyE Offline
                    Eric Katzfey
                    ModalAI Team
                    wrote on last edited by
                    #9

                    @Ethan-Wu Not sure about Ethernet. UVC is specific to USB.

                    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