gpt4 book ai didi

c++ - 如何在 C++ 上可视化 3D 点

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:15:30 24 4
gpt4 key购买 nike

我正在使用 Opencv 和 PCL 开发 3D 重建项目。在我的代码中,体素由 cv::Point3f 坐标表示

体素.hpp

    class Voxel
{
private:
//3D Coordinates of voxel
cv::Point3f coordinates;
public:
//constructor of voxel
Voxel(float x, float y, float z);
void drawVoxel();
};

体素.cpp

//implement constructor
Voxel::Voxel(float x, float y,float z)
{
coordinates.x=x;
coordinates.y=y;
coordinates.z=z;

}
//draw one voxel (3D point).
void Voxel::drawVoxel()
{
pcl::PointXYZ pt;
pt.x=coordinates.x;
pt.y=coordinates.y;
pt.z=coordinates.z;
pcl::visualization::CloudViewer viewer ("draw voxel");
viewer.showCloud (pt);

}

我在 drawVoxel() 函数的最后一行出现错误。我该如何解决?

最佳答案

尝试这样改变:

不要在绘图函数中创建云和查看器。将云作为参数传递:

void Voxel::drawVoxel( pcl::PointXYZ * pt )
{
//pcl::PointXYZ pt;
pt->x=coordinates.x;
pt->y=coordinates.y;
pt->z=coordinates.z;
}

用所有体素创建云后,绘制它:

pcl::PointXYZ  pt;
Voxel v1(1,2,3);
v.drawVoxel(&pt);
pcl::visualization::CloudViewer viewer ("draw voxel");
viewer.showCloud (pt);

关于c++ - 如何在 C++ 上可视化 3D 点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34190247/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com