Datasets:

Modalities:
Tabular
Formats:
parquet
Languages:
English
Libraries:
Datasets
Dask
License:
j-0-j commited on
Commit
fa47b1d
Β·
verified Β·
1 Parent(s): c1d2ee6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +73 -1
README.md CHANGED
@@ -8,4 +8,76 @@ tags:
8
  - clouds
9
  size_categories:
10
  - 1B<n<10B
11
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  - clouds
9
  size_categories:
10
  - 1B<n<10B
11
+ language:
12
+ - en
13
+ pretty_name: InLUT
14
+ ---
15
+
16
+ This resource contains Indoor Lodz University of Technology Point Cloud Dataset (InLUT3D) - a point cloud dataset tailored for real object classification and both semantic and instance segmentation tasks. Comprising of 321 scans, some areas in the dataset are covered by multiple scans. All of them are captured using the Leica BLK360 scanner.
17
+
18
+ ### Available categories
19
+
20
+ The points are divided into 18 distinct categories outlined in the label.yaml file along with their respective codes and colors. Among categories you will find:
21
+
22
+ - ceiling,
23
+ - floor,
24
+ - wall,
25
+ - stairs,
26
+ - column,
27
+ - chair,
28
+ - sofa,
29
+ - table,
30
+ - storage,
31
+ - door,
32
+ - window,
33
+ - plant,
34
+ - dish,
35
+ - wallmounted,
36
+ - device,
37
+ - radiator,
38
+ - lighting,
39
+ - other.
40
+
41
+ ### Challenges
42
+
43
+ Several challenges are intrinsic to the presented dataset:
44
+
45
+ 1. Extremely non-uniform categories distribution across the dataset.
46
+ 1. Presence of virtual images, particularly in reflective surfaces, and data exterior to windows and doors.
47
+ 1. Occurrence of missing data due to scanning shadows (certain areas were inaccessible to the scanner's laser beam).
48
+ 1. High point density throughout the dataset.
49
+
50
+ ### Data set structure
51
+ The structure of the dataset is the following:
52
+
53
+ ```
54
+ inlut3d.tar.gz/
55
+ β”œβ”€ setup_0/
56
+ β”‚ Β β”œβ”€ projection.jpg
57
+ β”‚ Β β”œβ”€ segmentation.jpg
58
+ β”‚ Β β”œβ”€ setup_0.pts
59
+ β”œβ”€ setup_1/
60
+ β”‚ Β β”œβ”€ projection.jpg
61
+ β”‚ Β β”œβ”€ segmentation.jpg
62
+ β”‚ Β β”œβ”€ setup_1.pts
63
+ ...
64
+ ```
65
+
66
+ | File | Content |
67
+ |------------------|-----------------------------------------------------------------------|
68
+ | projection.jpg | A file containing a spherical projection of a corresponding PTS file. |
69
+ | segmentation.jpg | A file with objects marked with unique colours. |
70
+ | setup_x.pts | A file with point cloud int the textual PTS format. |
71
+
72
+ ### Point characteristic
73
+
74
+ | Column ID | Description |
75
+ |-----------|-------------------------------------------------|
76
+ | 1 | X Cartesian coordinate |
77
+ | 2 | Y Cartesian coordinate |
78
+ | 3 | Z Cartesian Coordinate |
79
+ | 4 | Red colour in RGB space in the range [0, 255] |
80
+ | 5 | Green colour in RGB space in the range [0, 255] |
81
+ | 6 | Blue colour in RGB space in the range [0, 255] |
82
+ | 7 | Category code |
83
+ | 8 | Instance ID |