Question about a part of the code
yxchng opened this issue · 1 comments
yxchng commented
Can you kindly explain what is the purpose of minus mean in this line and hstack the results in this line?
oneformer3d-contributor commented
This means that for each point we form its features from r, g, b colors p[:, 3:]
and a shift between this point and a mean point of the scene p[:, :3] - p[:, :3].mean(0)
.