T2exture_datasets
收藏资源简介:
T2exture数据集是一个专门为热成像纹理插值任务构建的数据集,包含合成和真实两种类型的热成像纹理序列。该数据集旨在支持热成像领域的帧插值研究,特别是针对纹理信息的插值。数据内容主要包括:1)合成数据:包含‘texture’(纹理)和‘passive’(被动)帧,存储为单通道NumPy数组(.npy格式);2)真实基准数据:存储为灰度PNG图像。数据集按照标准的机器学习流程进行了划分,具体的训练集、验证集和测试集列表分别存储在`train.txt`、`valid.txt`和`test.txt`文件中。数据组织遵循特定目录结构,其中还包含用于监督的伪光流文件(.npz格式),这些文件存储了从插值目标帧到左右锚点帧的光流信息(形状为[2, 高度, 宽度])。数据的使用协议包括:默认的主动帧采样步长为10,目标插值上下文使用目标帧周围的四个被动帧,评估时使用全分辨率的感兴趣区域(ROI)帧。该数据集适用于热成像、计算机视觉中的帧插值、纹理合成与处理等相关任务。
The T2exture dataset is a dataset specifically constructed for thermal imaging texture interpolation tasks, containing both synthetic and real thermal imaging texture sequences. It aims to support frame interpolation research in the thermal imaging domain, particularly for texture information interpolation. Data content includes: 1) Synthetic data: containing texture and passive frames, stored as single-channel NumPy arrays (.npy format); 2) Real benchmark data: stored as grayscale PNG images. The dataset is split according to standard machine learning procedures, with specific training, validation, and test set lists stored in `train.txt`, `valid.txt`, and `test.txt` files respectively. Data organization follows a specific directory structure, which also includes pseudo optical flow files (.npz format) for supervision, storing optical flow information from the interpolation target frame to the left and right anchor frames (shape [2, height, width]). Data usage conventions include: default active frame sampling step of 10, target interpolation context using four passive frames around the target frame, and evaluation using full-resolution region of interest (ROI) frames. This dataset is suitable for tasks such as thermal imaging, computer vision frame interpolation, texture synthesis and processing.
T2exture Datasets 概述
数据集名称:T2exture Datasets
来源:为 T2exture 项目准备的合成与真实热纹理序列数据集。
数据内容
- 合成数据:包含热纹理(
texture)和被动(passive)帧,均为单通道 NumPy 数组(.npy)。 - 真实数据:基准测试帧为灰度 PNG 图像(
.png)。 - 光流数据:伪光流文件(
.npz)存储目标到端点的监督信息,其中:flow0:目标到左侧锚点的光流,形状[2, H, W]。flow1:目标到右侧锚点的光流,形状[2, H, W]。
数据布局
文件结构如下:
datasets/ train.txt valid.txt test.txt dataset_manifest.json sim/<scene>/ texture/001.npy passive/001.npy flow/s10/<scene>/001_002_011.npz real/<sequence>/001.png
划分与协议
- 数据划分:训练、验证、测试集分别列于
train.txt、valid.txt、test.txt。 - 参数设置:
- 默认主动帧步长为 10。
- 默认目标插值上下文使用目标周围的四个被动帧。
- 评估使用全分辨率 ROI 帧。
下载与代码
-
下载方式:通过 Hugging Face Hub 使用以下命令下载: bash python -c "from huggingface_hub import snapshot_download; snapshot_download(repo_id=chenjiashuo/T2exture_datasets, repo_type=dataset, local_dir=datasets)"
-
相关代码:公开代码仓库位于
https://github.com/dccc2025/T2exture/tree/0725_code_cjs,快速推理示例: bash python -B infer.py --mode synthetic --variant l --data-root datasets --output-dir outputs/infer/synthetic-l python -B infer.py --mode real --variant l --data-root datasets/real --output-dir outputs/infer/real-l





