facebookresearch / 3detr

Code & Models for 3DETR - an End-to-end transformer model for 3D object detection
Apache License 2.0
618 stars 76 forks source link

need your help #14

Closed cuiheng1234 closed 2 years ago

cuiheng1234 commented 2 years ago

hello, I am intertsted in your great work.Thanks. I have a problem about what does "ret_unique_cnt" mean?
“ret" and "cnt" are short for what?

imisra commented 2 years ago

Hi,

This is a part of PointNet++. ret - return cnt - count ret_unique_cnt - returns the number of unique points that were selected in the grouping operation of PointNet++. So if you send in N points and ask for K groups, ret_unique_cnt determines the number of unique points in each of the K groups.