panorama-video-process
收藏资源简介:
该数据集包含全景视频记忆测试的测试数据及三种处理模式的输出结果。测试数据来源于360x_dataset_LR数据集,选取了15个样本。三种模式分别为:two-turn(目标-离开-目标)、away-target-away-target same(入口离开-目标-出口离开-目标,且入口离开与出口离开使用相同的偏航角和视场角)、away-target-away-target opposite(时序与same相同,但入口离开与出口离开相对于目标方向相反,偏航角符号相反,视场角大小相同)。每种模式的输出均包含处理后的视频、元数据以及最终离开持续时间分布的直观可视化结果。该数据集可用于研究全景视频中基于注视预测的记忆行为。
This dataset contains test data for panoramic video memory testing and the output results of three processing modes. The test data is sourced from the 360x_dataset_LR dataset, with 15 samples selected. The three modes are: two-turn (target-leave-target), away-target-away-target same (entry leave-target-exit leave-target, with the same yaw angle and field of view for entry leave and exit leave), and away-target-away-target opposite (same timing as same mode, but entry leave and exit leave are in opposite directions relative to the target, with opposite yaw angle signs and same field of view magnitude). Each modes output includes the processed video, metadata, and intuitive visualizations of the final leave duration distribution. This dataset can be used to study gaze prediction-based memory behavior in panoramic videos.
数据集概述
该数据集包含三种模式下的测试数据及处理输出,用于全景视频记忆测试。
数据结构
test_data/:包含从https://huggingface.co/datasets/quchenyuan/360x_dataset_LR/tree/main选取的 15 个测试样本。outputs/two-turn/:由two-turn模式处理得到的视频、元数据以及最终离开持续时间分布的可视化图。outputs/away-target-away-target same/:由away-target-away-target same模式处理得到的视频、元数据及可视化分布图。outputs/away-target-away-target opposite/:由away-target-away-target opposite模式处理得到的视频、元数据及可视化分布图。
三种处理模式说明
1. two_turn 模式(目标-离开-目标)
时间顺序:
目标保持 -> 平滑转向离开 -> 离开保持 -> 平滑转回目标 -> 最终目标保持
该模式下,目标从第一帧起可见,随后视角离开目标,最终在预测窗口内从离开方向转回同一目标。
2. away_target_away_target + same 模式
时间顺序:
进入离开保持 -> 平滑转向目标 -> 中间目标保持 -> 平滑转向退出离开 -> 退出离开保持 -> 平滑转回目标 -> 最终目标保持
其中 same 表示进入离开与退出离开使用相同的离开偏航角和离开视场角(FOV)。
3. away_target_away_target + opposite 模式
时间顺序与 same 模式一致:
进入离开保持 -> 平滑转向目标 -> 中间目标保持 -> 平滑转向退出离开 -> 退出离开保持 -> 平滑转回目标 -> 最终目标保持
其中 opposite 表示进入离开与退出离开相对于目标方向相反:若进入离开是目标偏航角加一个正增量,则退出离开采用负增量,反之亦然。两个离开段的视场角大小相同,但偏航角不同。
使用方式
可通过 huggingface_hub 的 snapshot_download 函数下载整个数据集:
python from huggingface_hub import snapshot_download
path = snapshot_download( repo_id="sunmengxi/panorama-video-process", repo_type="dataset" ) print(path)




