SemGCN icon indicating copy to clipboard operation
SemGCN copied to clipboard

how tow concat roi feature with pose

Open lingtengqiu opened this issue 4 years ago • 1 comments

I am very interested in your work. In your paper, you said concate Roi feature with pose. Do you compress the feature to d-dimension? My understanding of your approach is: For example, pose(2D)+feature(d-dimen) == 2+D? Is it right? and what is your feature dimension. Looking forward to your reply.

lingtengqiu avatar Sep 18 '19 06:09 lingtengqiu

Hi @lingtengqiu

Thanks for your interest in our work.

Yes, you are right. For example, we pool features from the conv_1 to conv_4 layers from ResNet. Therefore, let C_i be the channel size of the conv_i layer, and the pooled feature size will be (C_1 + C_2 + C_3 + C_4). After concatenated with the joint coordinate (x, y), the final feature size will be (C_1 + C_2 + C_3 + C_4 + 2). C_i may vary if you use different backbone (e.g., ResNet34 or ResNet101).

Best, Long

garyzhao avatar Sep 18 '19 06:09 garyzhao