You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found the issue on intermediate files for real data benchmark on Geometric Registration on Synthetic Data
( intermediate-files-real.zip )
The data has 'nan' elements.
For example, fid = fopen('cloud_bin_0.desc.3dmatch.bin', 'rb') data = fread(fid, 'single') num_points = data(1) num_feats = data(2) feat = data(3:end)
any(isnan(feat))
-> ans = 1 sum(isnan(feat))
-> ans = 512
Thanks.
The text was updated successfully, but these errors were encountered:
Hello, thank you for the great work.
I found the issue on intermediate files for real data benchmark on Geometric Registration on Synthetic Data
( intermediate-files-real.zip )
The data has 'nan' elements.
For example,
fid = fopen('cloud_bin_0.desc.3dmatch.bin', 'rb')
data = fread(fid, 'single')
num_points = data(1)
num_feats = data(2)
feat = data(3:end)
any(isnan(feat))
-> ans = 1
sum(isnan(feat))
-> ans = 512
Thanks.
The text was updated successfully, but these errors were encountered: