Skip to content

Commit 4a0c974

Browse files
authored
Allowing for features (e.g. intensity) for semantickitti datasets. Needs in_channels >= 4 in config. (#665)
See #664. Co-authored-by: john-philipp <>
1 parent be20d32 commit 4a0c974

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ml3d/datasets/semantickitti.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ def get_data(self, idx):
282282

283283
data = {
284284
'point': points[:, 0:3],
285-
'feat': None,
285+
'feat': points[:, 3:],
286286
'label': labels,
287287
}
288288

0 commit comments

Comments
 (0)