xyjbaal / FPCC

MIT License
44 stars 11 forks source link

Instance segmentation to 6D pose #13

Closed BharathRajM closed 1 year ago

BharathRajM commented 1 year ago

I see that you output the instance segmentation but is there a way to extract 6D pose too from your results?

xyjbaal commented 1 year ago

I think there are two ways to extract 6D pose. One way is to estimate the 6D pose from the predicted individual instance by some methods, such as network or point pair feature. The other way is to add a parallel branch network to predict the 6D pose of each point (reference https://github.com/lvwj19/PPR-Net-plus).

BharathRajM commented 1 year ago

Perfect, got it. Thanks! I have just started playing around with PPR-Net++ and I see that they also have a set of hyper-parameters to bridge the sim-to-real gap. Is something like that implemented with FPCC?

xyjbaal commented 1 year ago

I didn't implement it with FPCC. The hyper-parameters to bridge the sim-to-real gap might be some noise added to the synthetic data. It can sometimes be called data augmentation.