alyelhakie commited on
Commit
6cdf8e6
·
verified ·
1 Parent(s): d0db915

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -15
README.md CHANGED
@@ -16,7 +16,7 @@ tags:
16
 
17
  [GitHub](https://github.com/OpsiClear/noise_guided_splatting) | [Project Page](https://opsiclear.github.io/ngs/)
18
 
19
- This repository contains the datasets used in the paper **"Fix False Transparency by Noise Guided Splatting"**[cite: 1]. It is designed to facilitate research and benchmarking for the "false transparency" artifact in 3D Gaussian Splatting (3DGS) reconstructions of opaque objects.
20
 
21
  The repository is composed of four distinct subsets, each augmented with noise Gaussian infills (`inside_gaussians.ply`) crucial for evaluating surface opacity.
22
 
@@ -49,10 +49,10 @@ The dataset is organized into four main directories, one for each subset. Each s
49
  ├── objects/
50
  │ ├── scan\_*/
51
  │ │ └── ...
52
- ├── dtu/
53
  │ ├── scan\_*/
54
  │ │ └── ...
55
- └── omniobject3d/
56
  ├── scan\_*/ (e.g., antique\_004, dinosaur\_004)
57
  │ └── ...
58
 
@@ -62,21 +62,10 @@ The dataset is organized into four main directories, one for each subset. Each s
62
 
63
  This dataset is designed to be used with the Hugging Face `datasets` library, which can load each subset using a specific configuration name.
64
 
65
- ```python
66
- from datasets import load_dataset
67
 
68
- # Load the 'stones' subset
69
- stone_dataset = load_dataset("OpsiClear/stones", name="stones", split="train")
70
- print(f"Loaded {len(stone_dataset)} samples from the 'stones' subset.")
71
- print("First sample:", stone_dataset[0])
72
 
73
- # Load the 'dtu' subset
74
- dtu_dataset = load_dataset("OpsiClear/stones", name="dtu", split="train")
75
- print(f"Loaded {len(dtu_dataset)} samples from the 'dtu' subset.")
76
 
77
- # To evaluate transparency using our method, see the official NGS repository:
78
- # (https://github.com/OpsiClear/noise_guided_splatting)
79
- ````
80
 
81
  ## Licensing
82
 
 
16
 
17
  [GitHub](https://github.com/OpsiClear/noise_guided_splatting) | [Project Page](https://opsiclear.github.io/ngs/)
18
 
19
+ This repository contains the datasets used in the paper **"Fix False Transparency by Noise Guided Splatting"**. It is designed to facilitate research and benchmarking for the "false transparency" artifact in 3D Gaussian Splatting (3DGS) reconstructions of opaque objects.
20
 
21
  The repository is composed of four distinct subsets, each augmented with noise Gaussian infills (`inside_gaussians.ply`) crucial for evaluating surface opacity.
22
 
 
49
  ├── objects/
50
  │ ├── scan\_*/
51
  │ │ └── ...
52
+ ├── DTU/
53
  │ ├── scan\_*/
54
  │ │ └── ...
55
+ └── OmniObject3D/
56
  ├── scan\_*/ (e.g., antique\_004, dinosaur\_004)
57
  │ └── ...
58
 
 
62
 
63
  This dataset is designed to be used with the Hugging Face `datasets` library, which can load each subset using a specific configuration name.
64
 
 
 
65
 
 
 
 
 
66
 
67
+ To evaluate transparency using our method, see the official [NGS repository](https://github.com/OpsiClear/noise_guided_splatting)
 
 
68
 
 
 
 
69
 
70
  ## Licensing
71