gpt4 book ai didi

c++ - 改进我的四叉树设计?

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

我有一个应用程序,用于显示和修改来自激光雷达文件的大量点云数据(每个文件最多几千兆字节,有时同时加载)。在应用程序中,用户能够查看加载点的 2D 图像(从顶部)并选择要在另一个窗口中查看的配置文件(从侧面)。同样,这涉及数百万个点,它们使用 OpenGL 显示。

为了处理数据,还有一个四叉树库,它可以工作,但速度非常慢。它已经使用了一段时间,但最近激光雷达点格式发生了变化,LidarPoint 对象需要添加一些属性(类成员),这导致它的大小变大,进而影响性能到几乎无法使用的水平(想想 5 分钟加载单个 2GB 文件)。

四叉树目前由指向 PointBucket 对象的指针组成,这些对象只是具有指定容量和定义边界(用于空间查询)的 LidarPoint 对象数组。如果超过桶的容量,它将分成四个桶。还有一种缓存系统,当点数据占用太多内存时,它会导致点桶转储到磁盘。如果需要,然后将它们加载回内存。最后,每个 PointBucket 都包含子桶/分辨率级别,它们保存原始数据的每个第 n 个点,并在根据缩放级别显示数据时使用。这是因为一次显示几百万个点,虽然没有必要那么详细,但速度非常慢。

我希望你能从中得到一张照片。如果没有,请询​​问,我可以提供更多详细信息或上传更多代码。例如这里是当前(和慢)插入方法:

// Insert in QuadTree
bool QuadtreeNode::insert(LidarPoint newPoint)
{
// if the point dosen't belong in this subset of the tree return false
if (newPoint.getX() < minX_ || newPoint.getX() > maxX_ ||
newPoint.getY() < minY_ || newPoint.getY() > maxY_)
{
return false;
}
else
{
// if the node has overflowed and is a leaf
if ((numberOfPoints_ + 1) > capacity_ && leaf_ == true)
{
splitNode();

// insert the new point that caused the overflow
if (a_->insert(newPoint))
{
return true;
}
if (b_->insert(newPoint))
{
return true;
}
if (c_->insert(newPoint))
{
return true;
}
if (d_->insert(newPoint))
{
return true;
}
throw OutOfBoundsException("failed to insert new point into any \
of the four child nodes, big problem");
}

// if the node falls within the boundary but this node not a leaf
if (leaf_ == false)
{
return false;
}
// if the node falls within the boundary and will not cause an overflow
else
{
// insert new point
if (bucket_ == NULL)
{
bucket_ = new PointBucket(capacity_, minX_, minY_, maxX_, maxY_,
MCP_, instanceDirectory_, resolutionBase_,
numberOfResolutionLevels_);
}
bucket_->setPoint(newPoint);
numberOfPoints_++;
return true;
}
}
}

// Insert in PointBucket (quadtree holds pointers to PointBuckets which hold the points)
void PointBucket::setPoint(LidarPoint& newPoint)
{
//for each sub bucket
for (int k = 0; k < numberOfResolutionLevels_; ++k)
{
// check if the point falls into this subbucket (always falls into the big one)
if (((numberOfPoints_[0] + 1) % int(pow(resolutionBase_, k)) == 0))
{
if (!incache_[k])
cache(true, k);

// Update max/min intensity/Z values for the bucket.
if (newPoint.getIntensity() > maxIntensity_)
maxIntensity_ = newPoint.getIntensity();
else if (newPoint.getIntensity() < minIntensity_)
minIntensity_ = newPoint.getIntensity();

if (newPoint.getZ() > maxZ_)
maxZ_ = newPoint.getZ();
else if (newPoint.getZ() < minZ_)
minZ_ = newPoint.getZ();

points_[k][numberOfPoints_[k]] = newPoint;
numberOfPoints_[k]++;
}
}
}

现在我的问题是你能不能想办法改进这个设计?处理无法放入内存的大量数据时,有哪些通用策略?如何使四叉树更有效率?有没有办法加快点的渲染?

最佳答案

Now my question is if you can think of a way to improve this design?

是:不要将对象本身存储在四叉树中。将它们放入平面结构(数组、链表等)中,让四叉树只保留指向实际对象的指针。如果四叉树具有一定的深度(在所有节点上),您也可以将其展平。

关于c++ - 改进我的四叉树设计?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9786679/

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