本文內(nèi)容
● 錄制器選項(xiàng)
● 錄制文件
● 驗(yàn)證錄制
● 后續(xù)步驟
本文介紹如何使用 k4arecorder 命令行實(shí)用工具將傳感器 SDK 發(fā)出的數(shù)據(jù)流錄制到文件中。
錄制器選項(xiàng)
k4arecorder 提供不同的命令行參數(shù)用于指定輸出文件和錄制模式。
錄制內(nèi)容以 Matroska.mkv 格式存儲(chǔ)。 錄制內(nèi)容為彩色和深度圖像使用多個(gè)視頻軌道,并包含相機(jī)校準(zhǔn)和元數(shù)據(jù)等其他信息。
k4arecorder [options] output.mkv
Options:
-h, --help Prints this help
--list List the currently connected K4A devices
--device Specify the device index to use (default: 0)
-l, --record-length Limit the recording to N seconds (default: infinite)
-c, --color-mode Set the color sensor mode (default: 1080p), Available options:
3072p, 2160p, 1536p, 1440p, 1080p, 720p, 720p_NV12, 720p_YUY2, OFF
-d, --depth-mode Set the depth sensor mode (default: NFOV_UNBINNED), Available options:
NFOV_2X2BINNED, NFOV_UNBINNED, WFOV_2X2BINNED, WFOV_UNBINNED, PASSIVE_IR, OFF
--depth-delay Set the time offset between color and depth frames in microseconds (default: 0)
A negative value means depth frames will arrive before color frames.
The delay must be less than 1 frame period.
-r, --rate Set the camera frame rate in Frames per Second
Default is the maximum rate supported by the camera modes.
Available options: 30, 15, 5
--imu Set the IMU recording mode (ON, OFF, default: ON)
--external-sync Set the external sync mode (Master, Subordinate, Standalone default: Standalone)
--sync-delay Set the external sync delay off the master camera in microseconds (default: 0)
This setting is only valid if the camera is in Subordinate mode.
-e, --exposure-control Set manual exposure value (-11 to 1) for the RGB camera (default: auto exposure)
錄制文件
示例 1。 錄制深度 NFOV Unbinned (640x576) 模式 RGB 1080p @ 30 fps(包括 IMU)內(nèi)容。 按 CTRL-C 鍵可停止錄制。
k4arecorder.exe output.mkv
示例 2。 錄制 WFOV Unbinned (1MP) RGB 2160p @ 15 fps(不包括 IMU)內(nèi)容 10 秒。
k4arecorder.exe -d WFOV_UNBINNED -c 2160p -r 15 -l 10 --imu OFF output.mkv
示例 3。 錄制 WFOV 2x2 Binned 30 fps 內(nèi)容 5 秒,并保存到 output.mkv。
k4arecorder.exe -d WFOV_2X2BINNED -c OFF --imu OFF -l 5 output.mkv
提示
在錄制之前,可以使用Femto Mega 查看器配置 RGB 相機(jī)控件(例如設(shè)置手動(dòng)白平衡)。
驗(yàn)證錄制
可以使用 Femto Mega 查看器打開(kāi)輸出的 .mkv 文件。
若要提取軌道或查看文件信息,可以使用 MKVToolNix 工具包中的 mkvinfo 等工具。
后續(xù)步驟