1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 08:13:04 +04:00

Merge pull request #22682 from TsingYiPainter:5.x

3D: Handle cases where the depth of Octree setting is too large

* Handle cases where the depth setting is too large
This commit is contained in:
Yuhang Wang
2022-11-03 15:15:17 +08:00
committed by GitHub
parent 7e3d56e2ff
commit d976272d23
3 changed files with 19 additions and 10 deletions
+2 -1
View File
@@ -2548,8 +2548,9 @@ public:
/** @brief Insert a point data to a OctreeNode.
*
* @param point The point data in Point3f format.
* @return Returns whether the insertion is successful.
*/
void insertPoint(const Point3f& point);
bool insertPoint(const Point3f& point);
/** @brief Read point cloud data and create OctreeNode.
*