<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content="text/html; charset=iso-8859-1" http-equiv=Content-Type>
<META content="MSHTML 5.00.3700.6699" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>Hi,</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>&nbsp; I have points in cloud and want to generate 
surface reconstruction by vtk library. There is example in vtk in .py but I 
couldn't convert in C++ for below code. Any body can convert this few line code 
in c++. I have problem that how can I use SetExecuteMethod with my ReadFile 
function.</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>////////////////////////</FONT></DIV>
<DIV><FONT face=Arial size=2>pointSource = 
vtk.vtkProgrammableSource()</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>def readPoints():<BR>&nbsp;&nbsp;&nbsp; output = 
pointSource.GetPolyDataOutput()<BR>&nbsp;&nbsp;&nbsp; points = 
vtk.vtkPoints()<BR>&nbsp;&nbsp;&nbsp; output.SetPoints(points)</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>&nbsp;&nbsp;&nbsp; file = 
open(os.path.normpath(os.path.join(VTK_DATA_ROOT, 
"Data/cactus.3337.pts")))</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>&nbsp;&nbsp;&nbsp; line = 
file.readline()<BR>&nbsp;&nbsp;&nbsp; while 
line:<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; data = 
string.split(line)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if data and 
data[0] == 
'p':<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; x, y, 
z = float(data[1]), float(data[2]), 
float(data[3])<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
points.InsertNextPoint(x, y, z)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
line = file.readline()</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>pointSource.SetExecuteMethod(readPoints) -- 
???</FONT></DIV>
<DIV><FONT face=Arial size=2>//////////////////</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Thanks </FONT></DIV>
<DIV><FONT face=Arial size=2>Regard</FONT></DIV>
<DIV><FONT face=Arial size=2>Amit</FONT></DIV></BODY></HTML>