Open alfredtorres opened 5 years ago
Hi, Thanks for your work on point cloud process. I find something maybe wrong in your code. In the QueryAndGroup function, if use raw_grouped_xyz=grouped_xyz, the raw_grouped_xyz and grouped_xyz is actually one vaiable sharing the same pointer. So when changing the grouped_xyz, the raw_grouped_xyz will also change. https://github.com/Yochengliu/Relation-Shape-CNN/blob/cc52c4890f280a4ff89ba35afd5bef77c05b68ee/utils/pointnet2_utils.py#L388
raw_grouped_xyz=grouped_xyz
raw_grouped_xyz
grouped_xyz
The result new_features just contains related coordinates no absolute coordinates. I don't sure whether it only occur in my code, please check it.
new_features
Thanks for your sharing projcet.
Great, thanks very much. I'll check this.
Hi, Thanks for your work on point cloud process. I find something maybe wrong in your code. In the QueryAndGroup function, if use
raw_grouped_xyz=grouped_xyz
, theraw_grouped_xyz
andgrouped_xyz
is actually one vaiable sharing the same pointer. So when changing thegrouped_xyz
, theraw_grouped_xyz
will also change. https://github.com/Yochengliu/Relation-Shape-CNN/blob/cc52c4890f280a4ff89ba35afd5bef77c05b68ee/utils/pointnet2_utils.py#L388The result
new_features
just contains related coordinates no absolute coordinates. I don't sure whether it only occur in my code, please check it.Thanks for your sharing projcet.