BiCo-Net icon indicating copy to clipboard operation
BiCo-Net copied to clipboard

How to get right visualization results in YCB and LineMOD dataset?

Open ZJU-PLP opened this issue 1 year ago • 3 comments

@aragakiyui611 Hi, dear author:  When I want to reproduce the visualization results of BiCo-Net, I meet one problem. Could you mind helping me to solve this issue?(I also have sent an email to your mailbox).

 I cannot get the right visualization results. Specially, the prediction point cloud cannot be visualized right while the target point cloud can do.

target_t = target_t + centroid
out_t = out_t + centroid
target = torch.bmm(model_points, target_r.transpose(2, 1)) + target_t # (1, 2620, 3)
pred = torch.bmm(model_points, out_R.transpose(2, 1)) + out_t # (1, 2620, 3)

Visualization results: example 1: image example 2: image

ZJU-PLP avatar Dec 04 '22 13:12 ZJU-PLP