View my account

L515 Multicamera Connection

Comments

2 comments

  • Rizal Marzuki

    Hi Michele Sacco,

    The Python code sample in the L515 multicam paper simply sets the option for INTER_CAM_SYNC then waits for frames to arrives.

    pipeline p;
    config cfg;
    cfg.enable_stream(RS2_STREAM_DEPTH);
    auto r = cfg.resolve(p);
    r.get_device().query_sensors().front().set_option(RS2_OPTION_INTER_CAM_SYNC_MODE, 1.f);
    p.start(cfg);
    auto frames = p.wait_for_frames();
    auto d = frames.get_depth_frame();

    There is no need to programmatically stop and start the streaming. The hardware trigger takes care of this.
    We recommend you to try prototyping using Python or C++, if possible, before moving to C#.

    There is minimum required setup time as detailed in the L515 multicam paper on external trigger.

    Pulse width = 60ms(setup) + #of frames33ms
    For example: for capturing 3 consecutive frames hardware on signal needs to be high for 160ms

    Regards,
    Rizal

    0
    Comment actions Permalink
  • Rizal Marzuki

    Hi Michele Sacco,

     

    I hope the information provided answered your questions.

    Is there anything else I can help with?

     

    Regards,

    Rizal

    0
    Comment actions Permalink

Please sign in to leave a comment.