MenghaoGuo/PCT

How is the Global Feature concatenated with Point Feature in segmentation?

YifanDengWHU opened this issue · 3 comments

Hi, thanks for your great work!
However, I have a problem with the concatenation in segmentation. As shown in Fig. 2, the global feature is obtained by repeating its previous vector. It should be (batch_size, 1024, point_num), point_num may be 1024 in the modelnet. While the point feature should be (batch_sie, 1024, sampled_point_num). For example, the sample_point_num is 256 according to the implementation at https://github.com/Strawberry-Eat-Mango/PCT_Pytorch.
So how can these two features be concatenated? Or do we just segment those sampled points?

Hi,
in segmentation, we do not use downsample strategy , the point_num is always 2048.

Got it, thanks!

Hi,How do you implement segmentation code?