如何使用mmwave studio对成像雷达进行长时间的录制数据

你好!

        我使用image radar 开发板,利用mmwave studio对其采集数据,先运行Cascade_Configuration_MIMO.lua,然后运行Cascade_Capture.lua,能够获取短暂的几秒的数据,如果想要获取更长时间的数据(半个小时),应该修改哪些参数?

我也尝试修改了Cascade_Capture.lua里面的capture_time、num_frames_to_capture、framing_type这些参数,都没有效果。

  • 你好,
    在Cascade_Capture.lua你可以看到下面的信息:
    -- Note: "capture_time" is a timeout for this script alone to exit - it does not control the actual duration of capture.
    -- The actual capture duration depends on the configured frame time and number of frames

    我建议修改Cascade_Configuration_MIMO.lua里面的下面参数:
    local nframes_master = 10 -- Number of Frames for Master
    local nframes_slave = 10 -- Number of Frames for Slaves
  • 非常感谢,修改这两个参数有效。