1 需求
在原先的博文VTK读取一个TXT文档中的三维点坐标显示三维点云的基础上,有小伙伴询问是否可以以点云中每一个三维点的坐标为中心绘制一个小的球体,用于标识特征点,这种就让我想到了化学里面的分子结构,所以就在原有博客的基础上进行了改写,实现了点云不是以点的方式而是以小球体形式显示出来,实现了大量球体的同时绘制。
2 Vtk5.10版本代码
#include <iostream>
#include <vector>
#include <vtkActor.h>
#include <vtkRenderer.h>
#include <vtkRenderWindow.h>
#include <vtkRenderWindowInteractor.h>
#include <vtkProperty.h>
#include <vtkInteractorStyleTrackball.h>
#include <vtkInteractorStyleTrackballCamera.h>
#include <vtkPoints.h>
#include <vtkPolyData.h>
#include <vtkCellArray.h>
#include <vtkPolyDataMapper.h>
#include <vtkSmartPointer.h>
#include <vtkSphereSource.h>
using namespace std;
void main(int argc, char* argv[])
{
vtkSmartPointer<vtkRenderer> renderer=vtkSmartPointer< vtkRenderer>::New();
vtkSmartPointer<vtkRenderWindow> renderWindow = vtkSmartPointer<vtkRenderWindow>::New();
renderWindow->AddRenderer(renderer);
vtkSmartPointer<vtkRenderWindowInteractor> renderWindowInteractor =vtkSmartPointer<vtkRenderWindowInteractor>::New();
vtkSmartPointer<vtkInteractorStyleTrackballCamera> istyle = vtkSmartPointer<vtkInteractorStyleTrackballCamera>::New();
renderWindowInteractor->SetRenderWindow(renderWindow);
vtkSmartPointer<vtkInteractorStyleTrackballCamera> style = vtkSmartPointer<vtkInteractorStyleTrackballCamera>::New();
renderWindowInteractor->SetInteractorStyle( style );//设置交互器风格
//_读进点云数据信息
FILE*fp = NULL; fp=fopen("E:\\斯坦福兔子3000点.txt","r"); //2DpointDatas.txt
if(!fp)
{
printf("打开文件失败!!\n");
int m;
cin>>m;
exit(0);
}
double x=0,y=0,z=0;
int i = 0;
while (!feof(fp))
{
fscanf(fp,"%lf %lf %lf",&x,&y,&z);
//以每一个三维作为中心画球
vtkSmartPointer<vtkSphereSource> sphereSource = vtkSmartPointer<vtkSphereSource>::New();//定义局部球对象
sphereSource->SetCenter(x, y, z);//设置球的中心
sphereSource->SetRadius(0.001);//设置球的半径
sphereSource->SetThetaResolution(10);//设置球表面精度,值越大球的光滑程度越高
vtkSmartPointer<vtkPolyDataMapper> mapper = vtkSmartPointer<vtkPolyDataMapper>::New();//定义局部PolydataMapper对象
mapper->SetInputConnection(sphereSource->GetOutputPort());
vtkSmartPointer<vtkActor> actor = vtkSmartPointer<vtkActor>::New();//定义局部actor对象
actor->SetMapper(mapper);
actor->GetProperty()->SetColor(0,1,0);//设置球的颜色,这里可以为每个点赋不同的颜色或者是随机颜色
actor->GetProperty()->SetRepresentationToWireframe();//以线框的方式显示
// actor->GetProperty()->SetRepresentationToSurface();//以表面的方式显示
renderer->AddActor(actor);//将局部的actor加入到全局的绘制对象renderer中
i ++;
}
fclose(fp);
renderer->SetBackground(1,1,1);//设置背景颜色
renderWindow->Render();
renderWindow->SetSize(800,800);//设置窗口大小
renderWindowInteractor->Start();
}
3 示例图
本文作者:StubbornHuang
版权声明:本文为站长原创文章,如果转载请注明原文链接!
原文标题:VTK以批量三维点坐标为中心(点云)绘制球体,可用于标识特征点或者是化学分子
原文链接:https://www.stubbornhuang.com/285/
发布于:2019年11月08日 23:06:09
修改于:2023年06月26日 22:58:03
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论
50