Closed junmeng6025 closed 7 months ago
I guess your input point cloud has only xyz coordinates. It has no normals or other features, such as RGB colors. I suggest you directly use the coordinates as the point feature. To this end, you can use the following function
x = octree.get_input_feature(feature = 'L' or 'P', nempty = True or False)
Hi, I'm facing an issue about generating octree feature. I've already generated Octree upon point cloud successfully, with attributions
children
,neighbor
etc, but the attributionfeatures
is a list ofNone
.When I try to generate feature data using
ocnn.modules.InputFeature
, it claims an error:I think these
NoneType
might come up due tofeatures
andnormals
, but I have o idea how should these two be generated. Thanks in advance.