fix: 更新msi打包流程,相关说明同步至README;

fix: 修改代码遗留版本号和项目名称问题,同步至最新版本和名称;
fix: 修复代码可视化图像方向bug
This commit is contained in:
2026-01-15 11:00:44 +08:00
parent d6521d4be1
commit 5adce6c8df
12 changed files with 736 additions and 222 deletions

View File

@@ -103,7 +103,7 @@ bool PointCloudProcessor::initializeOpenCL()
"float z = depth[idx] * z_scale; "
// 完全平面的圆柱投影X和Y直接使用像素坐标缩放到合适的范围
"xyz[idx*3] = (x - cx) * 2.0f; " // X坐标缩放系数2.0
"xyz[idx*3+1] = (y - cy) * 2.0f; " // Y坐标缩放系数2.0
"xyz[idx*3+1] = -(y - cy) * 2.0f; " // Y坐标取反,修正上下颠倒
"xyz[idx*3+2] = z; "
"}";