Algorithm to create minimal bounding-box composition of point cloud

若如初见. 提交于 2020-03-03 06:58:03

问题


I have a set of 2D points. I want to find a set of (possibly overlapping and arbitrarily oriented) bounding-boxes for subsets of these points such that each point lies within at least one box, each box contains at least k points and such that the combined area of the boxes is minimized.

One idea for an algorithm I have is:

  • use a concave-hull algorithm to find a concave hull for the points.
  • use convex decomposition algorithm to find a set of convex hulls.
  • compute arbitrarily oriented minimum bounding box for each of the convex hulls.

I'm looking for a list of other (potentially better suited) algorithms for this problem?

来源:https://stackoverflow.com/questions/60005251/algorithm-to-create-minimal-bounding-box-composition-of-point-cloud

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!