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
Hi, thanks for your work! While running your code, I came up with a segmentation fault, and after some debugging I found that it seems to be a memory alignment problem, here is the detail:
Firstly, I found that the fx, fy, cx, cy of sensor.model are all zero values. Then I added some output in the code to debug it, see below lines in main.cpp:
The two outputs should be same, but actually they are:
`./build/app/gsfusion config/replica_room0.yaml
model fx: 600 model fy: 600
model address: 0x7fffeaf55990
sensor intrinsics: 0 0 0 0
model address: 0x7fffeaf559c0`
it can be found that the memory address shifted by 30bytes, which I believe is not normal. My system env are Ubuntu22.04 and cuda11.8, with GCC. I've tried the method mentioned in https://github.com/smartroboticslab/GSFusion/issues/8 but it did not work. Again, any suggestions will be helpful!
The text was updated successfully, but these errors were encountered:
Hi, if you encounter a segmentation fault while running GSFusion, I recommend disabling the GUI thread (Lines 118-120 and 254-255) in main.cpp during debugging.
Thanks for your reply! I've already disabled the GUI thread as you instructed, but the problem was still there, the same memory error. Any other suggestions?
Now I've fixed the problem, by simply adding set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=native") to the project cmakelists.txt (although the GUI still reported a segmentation fault, so I just disabled it).
Hi, thanks for your work! While running your code, I came up with a segmentation fault, and after some debugging I found that it seems to be a memory alignment problem, here is the detail:
Firstly, I found that the fx, fy, cx, cy of sensor.model are all zero values. Then I added some output in the code to debug it, see below lines in main.cpp:
and then in pinhole_camera.cpp
The two outputs should be same, but actually they are:
it can be found that the memory address shifted by 30bytes, which I believe is not normal. My system env are Ubuntu22.04 and cuda11.8, with GCC. I've tried the method mentioned in https://github.com/smartroboticslab/GSFusion/issues/8 but it did not work. Again, any suggestions will be helpful!
The text was updated successfully, but these errors were encountered: