[vtkusers] Find closest point
nuno.jf
nunofernandes7 at gmail.com
Mon Sep 19 11:19:56 EDT 2011
Well, this is strange, my application crashes each time I run it since I
applied vtkWindowedSincPolyDataFilter.
I read my point cloud (vtkpolydata) and then I apply the filter to it. What
could be wrong?
vtkPolyDataReader * imp = vtkPolyDataReader::New();
imp -> SetFileName (argv[1]);
imp -> Update();
vtkWindowedSincPolyDataFilter *smoother =
vtkWindowedSincPolyDataFilter::New();
smoother->SetInput(imp -> GetOutput());
smoother->SetNumberOfIterations(15);
smoother->SetPassBand(.001);
smoother->Update();
--
View this message in context: http://vtk.1045678.n5.nabble.com/Find-closest-point-tp4816065p4819327.html
Sent from the VTK - Users mailing list archive at Nabble.com.
More information about the vtkusers
mailing list