vtk中使用查找点集中离目标点最近的k个点(vtkKdTree,vtkKdTreePointLocator,vtkOctreePointLocator)

通俗的说,就是有一个点集{(0,0),(1,0),(0,1),(1,1)},你有一个点A(0.9,0),你想
在点集中找k个(k=2)离点A最近的点,就可以使用此方法

1.使用vtkKdTree
关键代码:

    // Create the tree
    vtkSmartPointer<vtkKdTree> pointTree =
      vtkSmartPointer<vtkKdTree>::New();
    pointTree->BuildLocatorFromPoints(points);

    // Find the 2 closest points to (0.5,0,0)
    vtkIdType k = 2;
    double testPoint[3] = {0.5, 0.0, 0.0};
    vtkSmartPointer<vtkIdList> result =
      vtkSmartPointer<vtkIdList>::New();

    pointTree->FindClosestNPoints(k, testPoint, result);

官方demo:
https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/BuildLocatorFromKClosestPoints/
使用vtkOctreePointLocator查找最临近的k个点:
https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/OctreeKClosestPoints/

2.使用vtkKdTreePointLocator
关键代码:

    //Create the tree
    vtkSmartPointer<vtkKdTreePointLocator> pointTree =
        vtkSmartPointer<vtkKdTreePointLocator>::New();
    pointTree->SetDataSet(pointSource->GetOutput());
    pointTree->BuildLocator();

    // Find the k closest points to (0,0,0)
    unsigned int k = 3;
    double testPoint[3] = {0.0, 0.0, 0.0};
    vtkSmartPointer<vtkIdList> result =
        vtkSmartPointer<vtkIdList>::New();

    pointTree->FindClosestNPoints(k, testPoint, result);

官方demo:
https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/KdTreePointLocator/ClosestNPoints/

3.使用kDTree查找最近的点
关键代码:

  //Create the tree
  vtkSmartPointer<vtkKdTree> kDTree = 
    vtkSmartPointer<vtkKdTree>::New();
  kDTree->BuildLocatorFromPoints(points);

  double testPoint[3] = {2.0, 0.0, 0.0};

  //Find the closest points to TestPoint
  double closestPointDist;
  vtkIdType id = kDTree->FindClosestPoint(testPoint, closestPointDist); //vtkKdTree::FindClosestPoint: must build locator first
  std::cout << "The closest point is point " << id << std::endl;

官方demo:
https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/KdTree/
使用vtkKdTreePointLocator查找最近点demo:
https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/KdTreePointLocatorClosestPoint/
使用vtkIncrementalOctreePointLocator查找最近点及插入点demo:
https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/IncrementalOctreePointLocator/
vtkOctreePointLocator查找最近点及插入点demo:
https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/OctreeClosestPoint/

4.使用vtkKdTreePointLocator在圆范围内查找

pointTree->FindPointsWithinRadius(1.0, testPoint, result);

官方demo:
https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/KDTreeFindPointsWithinRadius/
使用vtkOctreePointLocator在圆范围内查找:
https://lorensen.github.io/VTKExamples/site/Cxx/DataStructures/OctreeFindPointsWithinRadius/

VTK(Visualization Toolkit)中,获取一个`vtkActor`中的特定的世界坐标系位置通常需要通过一系列步骤,因为VTK的核心API并不直接提供这个功能。但是你可以按照以下方法操作: 1. 首先,你需要得到该`vtkActor`所关联的几何体对象(如`vtkPolyData`或`vtkActor2D`等),这通常是通过`GetMapper()`函数从`vtkActor`中获得。 2. 然后,如果你有一个具体的顶ID或的位置信息,你可以遍历几何体的数据结构找到对应的顶。对于`vtkPolyData`,可以使用`GetPoints()`方法获取顶数组,并通过索引来查找对应。 3. 对于位置,`vtkPoints`有一个`GetPoint()`方法,它接受一个ID作为输入,返回的是三维世界空间中的坐标([x, y, z])。 4. 如果你想获取的是特定位置而不是顶ID的坐标,可能需要进一步处理,比如对几何体进行采样或计算插值,取决于你的应用场景。 ```cpp // 示例代码(假设已有一个名为myActor的vtkActor) vtkMapper* mapper = myActor->GetMapper(); if (mapper) { vtkDataSet *dataset = mapper->GetInput(); if (dataset && dataset->IsA("vtkPolyData")) { vtkPoints* points = vtkPoints::SafeDownCast(dataset->GetPoints()); int pointId; double worldCoord[3]; // 通过顶ID获取坐标 if (points->FindPoint(pointId, worldCoord)) { std::cout << "World coordinates of point " << pointId << ": (" << worldCoord[0] << ", " << worldCoord[1] << ", " << worldCoord[2] << ")" << std::endl; } } else { // 处理其他类型的几何体 } } ``` 请注意,这只是一个基础示例,实际应用可能会更复杂,特别是在处理非均匀网格或动态数据时。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

努力减肥的小胖子5

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值