I found the reason why the program wasn't running successfully. In the gaussian_mapper.cpp file under Photo-SLAM-main/src, there was an error in reading the input camera parameters. The parameter names were incorrect. Originally, it was written as camera.width_ = camera_file["Camera.w"].operator int();, and I changed it to camera.width_ = camera_file["Camera.width"].operator int(); std::cout << "Input camera image size: " << camera.width_ << std::endl; camera.height_ = camera_file["Camera.height"].operator int();. After making this change, the program runs normally. However, I still don't understand why the visualization interface is black and showing nothing.
I want to know what could cause my visualization to run with no results. How should I go about checking it?Could you provide a contact method for us to communicate, or you can email me at 1791133188@qq.com?
I found the reason why the program wasn't running successfully. In the gaussian_mapper.cpp file under Photo-SLAM-main/src, there was an error in reading the input camera parameters. The parameter names were incorrect. Originally, it was written as camera.width_ = camera_file["Camera.w"].operator int();, and I changed it to camera.width_ = camera_file["Camera.width"].operator int(); std::cout << "Input camera image size: " << camera.width_ << std::endl; camera.height_ = camera_file["Camera.height"].operator int();. After making this change, the program runs normally. However, I still don't understand why the visualization interface is black and showing nothing.
I want to know what could cause my visualization to run with no results. How should I go about checking it?Could you provide a contact method for us to communicate, or you can email me at 1791133188@qq.com?