Zipeng Feng
Zipeng Feng
工程需要,要将模型初始化的日志输出屏蔽掉,但按照网上教程,我在main函数中写了如下代码: void GlobalInit(int* pargc, char*** pargv) { // Google flags. ::google::InitGoogleLogging(*(pargv)[0]); google::ShutdownGoogleLogging(); } int main(int argc, char** argv) { GlobalInit(&argc, &argv); } 日志依然会显示在窗口上。请问有大佬可以帮忙解决一下嘛?
I found that the 'scale_mat' in cameras.npz is different from that generated by [this](https://github.com/lioryariv/idr/blob/main/code/preprocess/preprocess_cameras.py) script. Take scan24 as example, the 'scale_mat_0' in cameras.npz:  but the 'scale_mat_0' in scan24 processed...