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
we should skip the save of rgb panorama image when k == 12 .... Addingf the following lines before line 423:
if (12 == k || 13 == k || 14 == k || 15 == k){
continue;
}
After I use your code to render equirectangular depth images, I find the depth image can be naturally unprojected to a unit sphere, the we can get the hole room pointcloud at once.
./ReplicaSDK/ReplicaRendererDataset /media/ziqianbai/BACKPACK_DATA1/Replica_all/replica_v1/room_0/mesh.ply /media/ziqianbai/BACKPACK_DATA1/Replica_all/replica_v1/room_0/textures/ /media/ziqianbai/BACKPACK_DATA1/Replica_all/replica_v1/room_0/glass.sur ../glob/train/room_0_6dof.txt y /media/ziqianbai/BACKPACK_DATA1/Replica_all/replica_for_panonerf/room_0/ 1024 512 ../glob/pro2pos.txt
But the pointcloud seems imprecise, the depth is likely been truncated cause of inappropriate depth scale or depth image format:
The code I used to unproject the equirect_depth_image :
Hi replica360 team, thank you for your awesome work.
First , there is a minor bug during writing equirectangular depth image:
matryodshka-replica360/ReplicaSDK/src/render_dataset.cpp
Lines 423 to 449 in 33d9cff
we should skip the save of rgb panorama image when k == 12 .... Addingf the following lines before line 423:
After I use your code to render equirectangular depth images, I find the depth image can be naturally unprojected to a unit sphere, the we can get the hole room pointcloud at once.
./ReplicaSDK/ReplicaRendererDataset /media/ziqianbai/BACKPACK_DATA1/Replica_all/replica_v1/room_0/mesh.ply /media/ziqianbai/BACKPACK_DATA1/Replica_all/replica_v1/room_0/textures/ /media/ziqianbai/BACKPACK_DATA1/Replica_all/replica_v1/room_0/glass.sur ../glob/train/room_0_6dof.txt y /media/ziqianbai/BACKPACK_DATA1/Replica_all/replica_for_panonerf/room_0/ 1024 512 ../glob/pro2pos.txt
But the pointcloud seems imprecise, the depth is likely been truncated cause of inappropriate depth scale or depth image format:
The code I used to unproject the equirect_depth_image :
@jamestompkin @breuckelen @lynl7130 Could u help me figure out the reason the resulting phenomenon? Thanks in advance!
The text was updated successfully, but these errors were encountered: