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

ModalAI Forum

  1. ModalAI Support Forum
  2. Software Development
  3. Video and Image Sensors
  4. High res camera latency

High res camera latency

Scheduled Pinned Locked Moved Video and Image Sensors
3 Posts 2 Posters 347 Views 1 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.
  • B Offline
    B Offline
    bschulzhf
    wrote on last edited by
    #1

    voxl-inspect-cam -a shows that the hires_down_large_color latency is >900ms. What is the cause of the latency and can it be reduced?

    Thanks!

    1 Reply Last reply
    0
    • B Offline
      B Offline
      bschulzhf
      wrote on last edited by
      #2

      As an update, I was able to get the latency down to about 50-60ms by making the following changes to /etc/modalai/voxl-camera-server.conf. Are there any other optimizations I can make?

      {
      "type": "imx412",
      "name": "hires_down",
      "enabled": true,
      "camera_id": 2,
      "fps": 10,
      "en_preview": true,
      "preview_width": 4056,
      "preview_height": 3040,
      "en_raw_preview": false,
      "en_small_video": false,
      "small_video_width": 1024,
      "small_video_height": 768,
      "small_venc_mode": "h264",
      "small_venc_br_ctrl": "cqp",
      "small_venc_Qfixed": 30,
      "small_venc_Qmin": 15,
      "small_venc_Qmax": 40,
      "small_venc_nPframes": 9,
      "small_venc_mbps": 2,
      "small_venc_osd": false,
      "en_large_video": false,
      "large_video_width": 4056,
      "large_video_height": 3040,
      "large_venc_mode": "h264",
      "large_venc_br_ctrl": "cqp",
      "large_venc_Qfixed": 40,
      "large_venc_Qmin": 15,
      "large_venc_Qmax": 50,
      "large_venc_nPframes": 29,
      "large_venc_mbps": 40,
      "large_venc_osd": false,
      "en_snapshot": false,
      "en_snapshot_width": 4056,
      "en_snapshot_height": 3040,
      "exif_focal_length": 3.0999999046325684,
      "exif_focal_length_in_35mm_format": 17,
      "exif_fnumber": 1.2400000095367432,
      "snapshot_jpeg_quality": 75,
      "ae_mode": "lme_msv",
      "gain_min": 54,
      "gain_max": 8000,
      "ae_desired_msv": 60,
      "exposure_min_us": 20,
      "exposure_max_us": 33000,
      "exposure_soft_min_us": 5000,
      "ae_filter_alpha": 0.600000023841858,
      "ae_ignore_fraction": 0.20000000298023224,
      "ae_slope": 0.05000000074505806,
      "ae_exposure_period": 1,
      "ae_gain_period": 1
      }

      Alex KushleyevA 1 Reply Last reply
      0
      • B bschulzhf

        As an update, I was able to get the latency down to about 50-60ms by making the following changes to /etc/modalai/voxl-camera-server.conf. Are there any other optimizations I can make?

        {
        "type": "imx412",
        "name": "hires_down",
        "enabled": true,
        "camera_id": 2,
        "fps": 10,
        "en_preview": true,
        "preview_width": 4056,
        "preview_height": 3040,
        "en_raw_preview": false,
        "en_small_video": false,
        "small_video_width": 1024,
        "small_video_height": 768,
        "small_venc_mode": "h264",
        "small_venc_br_ctrl": "cqp",
        "small_venc_Qfixed": 30,
        "small_venc_Qmin": 15,
        "small_venc_Qmax": 40,
        "small_venc_nPframes": 9,
        "small_venc_mbps": 2,
        "small_venc_osd": false,
        "en_large_video": false,
        "large_video_width": 4056,
        "large_video_height": 3040,
        "large_venc_mode": "h264",
        "large_venc_br_ctrl": "cqp",
        "large_venc_Qfixed": 40,
        "large_venc_Qmin": 15,
        "large_venc_Qmax": 50,
        "large_venc_nPframes": 29,
        "large_venc_mbps": 40,
        "large_venc_osd": false,
        "en_snapshot": false,
        "en_snapshot_width": 4056,
        "en_snapshot_height": 3040,
        "exif_focal_length": 3.0999999046325684,
        "exif_focal_length_in_35mm_format": 17,
        "exif_fnumber": 1.2400000095367432,
        "snapshot_jpeg_quality": 75,
        "ae_mode": "lme_msv",
        "gain_min": 54,
        "gain_max": 8000,
        "ae_desired_msv": 60,
        "exposure_min_us": 20,
        "exposure_max_us": 33000,
        "exposure_soft_min_us": 5000,
        "ae_filter_alpha": 0.600000023841858,
        "ae_ignore_fraction": 0.20000000298023224,
        "ae_slope": 0.05000000074505806,
        "ae_exposure_period": 1,
        "ae_gain_period": 1
        }

        Alex KushleyevA Offline
        Alex KushleyevA Offline
        Alex Kushleyev
        ModalAI Team
        wrote on last edited by
        #3

        Hi @bschulzhf ,

        voxl-inspect-cam -a command should not be generally used as it puts a lot of stress on the system. just use it to inspect the stream that you need, such as voxl-inspect-cam hires_down_large_color.

        Also, in your camera config changes, it is not clear exactly what changes you actually made, since you did not provide a diff (but i can see that you probably disabled all the streams except for the preview stream). In any case, you should revert your changes and just inspect the stream you need to estimate the latency.

        If you want to provide more information about your application, we can suggest appropriate camera server parameter changes. I do see that ae_desired_msv": 60 is potentially too dark (the target average pixel value for auto exposure control) - you can try increasing it and see if the image is too dark.

        Alex

        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