hehefan / P4Transformer

Implementation of the "Point 4D Transformer Networks for Spatio-Temporal Modeling in Point Cloud Videos" paper.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Transfer of points to nearest frames

sheshap opened this issue · comments

@hehefan

Can you please explain what does transfer of points to nearest frames mean?
how are they transferred? (I understand those anchor points are picked using Farthest point sampling)

image

Thanks in Advance.

Hi,

Anchor points are picked using Farthest point sampling from anchor frames and then transferred (copied) to the nearest frames.

@hehefan

Thanks for your reply.
Can you please elaborate a little more?

When we do Farthest Point Sampling (FPS) on anchor frames we know the indices in the array of 3D points.
Since points are unordered, how would copying to the nearest frames would help get FPSs points in those nearest frames?

or

By copying how do we know where the points are actually in 3D? (they could be anywhere in the next frame because they are unordered)

Thanks in advance.

Hi @sheshap,

The method is point-based. Point coordinates are always maintained and used for position. When transferring a point to the nearest frames, both the point coordinate and feature are copied.