martinruenz / co-fusion

Co-Fusion: Real-time Segmentation, Tracking and Fusion of Multiple Objects

Home Page:http://visual.cs.ucl.ac.uk/pubs/cofusion/index.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The written vertex normals of a point cloud has illegal value.

cetusk opened this issue · comments

Hi,
I think this line may should be fixed to the below.

Core/CoFusion.cpp#L696

[-] Eigen::Matrix4f Tn = Tn.inverse().transpose();
[+] Eigen::Matrix4f Tn = Tp.inverse().transpose();

When I saved the point cloud at the final step and read it an another situation, I found the normal values are nan.
Thanks!