williamrhee nielsr HF Staff commited on
Commit
d51ae1a
·
1 Parent(s): 18e444d

Link paper and GitHub repository and add sample usage (#1)

Browse files

- Link paper and GitHub repository and add sample usage (03a234ca0f0243a3de2895b1eaef34bcc8ae33d3)


Co-authored-by: Niels Rogge <nielsr@users.noreply.huggingface.co>

Files changed (1) hide show
  1. README.md +21 -14
README.md CHANGED
@@ -1,18 +1,18 @@
1
  ---
 
 
2
  license: cc-by-4.0
3
- language: [en]
4
  task_categories:
5
- - image-to-image
6
- - image-classification
7
- - object-detection
8
- - image-segmentation
9
- - depth-estimation
10
  pretty_name: SCaN-TIR
11
  ---
12
 
13
-
14
  # SCaN-TIR: Stereo Clean-and-Noisy Paired Thermal Infrared Dataset
15
 
 
 
 
 
16
  SCaN-TIR is a real clean–noisy paired thermal infrared dataset for supervised TIR image denoising. It contains over 32.5K hardware-synchronized and geometrically aligned image pairs captured with two adjacent FLIR A65 thermal cameras, where one camera stream was intentionally degraded by disabling non-uniformity correction (NUC). The dataset includes both indoor and outdoor sequences at 640×512 resolution, providing real sensor noise rather than synthetic noise approximations.
17
 
18
  ## Highlights
@@ -26,9 +26,21 @@ SCaN-TIR is a real clean–noisy paired thermal infrared dataset for supervised
26
  * Provides both Fieldscale-mapped 8-bit images and original 14-bit images
27
  * Designed for supervised real-noise TIR denoising and downstream robotics perception
28
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  ## Dataset Structure
30
 
31
- The dataset is organized into scene folders containing synchronized RGB and thermal infrared images.
32
 
33
  ```text
34
  SCaN-TIR
@@ -61,9 +73,4 @@ If you use SCaN-TIR in your research, please cite:
61
  year={2026},
62
  organization={IEEE}
63
  }
64
- ```
65
-
66
- ## Links
67
-
68
- * Project Repository: [TIDY GitHub Repository](https://github.com/williamrheeth/TIDY?utm_source=chatgpt.com)
69
- * Dataset Homepage: [SCaN-TIR Dataset](https://huggingface.co/datasets/williamrhee/SCaN-TIR?utm_source=chatgpt.com)
 
1
  ---
2
+ language:
3
+ - en
4
  license: cc-by-4.0
 
5
  task_categories:
6
+ - image-to-image
 
 
 
 
7
  pretty_name: SCaN-TIR
8
  ---
9
 
 
10
  # SCaN-TIR: Stereo Clean-and-Noisy Paired Thermal Infrared Dataset
11
 
12
+ [**TIDY: Thermal Infrared Image Denoising via Wavelet Domain Entropy and Directional Stripe Index**](https://huggingface.co/papers/2606.19813)
13
+
14
+ [Code](https://github.com/williamrheeth/TIDY) | [Dataset](https://huggingface.co/datasets/williamrhee/SCaN-TIR) | [Video](https://youtu.be/PxcEG1ayDKE)
15
+
16
  SCaN-TIR is a real clean–noisy paired thermal infrared dataset for supervised TIR image denoising. It contains over 32.5K hardware-synchronized and geometrically aligned image pairs captured with two adjacent FLIR A65 thermal cameras, where one camera stream was intentionally degraded by disabling non-uniformity correction (NUC). The dataset includes both indoor and outdoor sequences at 640×512 resolution, providing real sensor noise rather than synthetic noise approximations.
17
 
18
  ## Highlights
 
26
  * Provides both Fieldscale-mapped 8-bit images and original 14-bit images
27
  * Designed for supervised real-noise TIR denoising and downstream robotics perception
28
 
29
+ ## Usage
30
+
31
+ You can download the dataset using the Hugging Face CLI:
32
+
33
+ ```bash
34
+ pip install -U "huggingface_hub[cli]"
35
+
36
+ huggingface-cli download williamrhee/SCaN-TIR \
37
+ --repo-type dataset \
38
+ --local-dir SCaN-TIR
39
+ ```
40
+
41
  ## Dataset Structure
42
 
43
+ The dataset is organized into scene folders containing synchronized clean and noisy thermal infrared images.
44
 
45
  ```text
46
  SCaN-TIR
 
73
  year={2026},
74
  organization={IEEE}
75
  }
76
+ ```