You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for sharing your KPCONV code! I'd like to ask if it is possible to add more features to the computation (i.e., XYZ, RGB, intensity or reflectance, no. of returns, return no.). I do not know if I am thinking right, but the changes should be don in datasets/Semantic3D.py (or other datasets.file) in line:
# Fill data containers
self.input_trees[cloud_split] += [search_tree]
self.input_colors[cloud_split] += [sub_colors]
**self.input_addvalues[cloud_split] +=[sub_prop]**
if cloud_split in ['training', 'validation']:
self.input_labels[cloud_split] += [sub_labels]
Hello,
Thank you for sharing your KPCONV code! I'd like to ask if it is possible to add more features to the computation (i.e., XYZ, RGB, intensity or reflectance, no. of returns, return no.). I do not know if I am thinking right, but the changes should be don in datasets/Semantic3D.py (or other datasets.file) in line:
KPConv/datasets/Semantic3D.py
Lines 214 to 236 in 16bfbb9
by changing the structure of data file like XYZ, RGB, other
and
and
then in
KPConv/datasets/Semantic3D.py
Lines 288 to 315 in 16bfbb9
should be 1 line added:
and in else also:
and in
**But how about rescaling?
**
The next step is to change lines:
KPConv/datasets/Semantic3D.py
Lines 327 to 337 in 16bfbb9
like:
and:
KPConv/datasets/Semantic3D.py
Lines 339 to 343 in 16bfbb9
then in line:
KPConv/datasets/Semantic3D.py
Lines 581 to 585 in 16bfbb9
in
KPConv/datasets/Semantic3D.py
Line 606 in 16bfbb9
**
c_list += [np.hstack((input_colors, input_addvalues, input_points + pick_point))]
**
in
KPConv/datasets/Semantic3D.py
Lines 675 to 677 in 16bfbb9
KPConv/datasets/Semantic3D.py
Line 703 in 16bfbb9
**
c_list += [np.hstack((input_colors, input_addvalues, input_points + pick_point))]
**
Do the types and shapes have to be changed ?
KPConv/datasets/Semantic3D.py
Lines 736 to 738 in 16bfbb9
and the last part:
KPConv/datasets/Semantic3D.py
Lines 745 to 792 in 16bfbb9
Is there something else should be changed or the changes should be done in different way?
The text was updated successfully, but these errors were encountered: