<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="MS Exchange Server version 6.5.7638.1">
<TITLE></TITLE>
</HEAD>
<BODY>
<!-- Converted from text/plain format -->
<BR>
<BR>

<P><FONT SIZE=2>Hi All,<BR>
I am trying to use vtkIterativeClosestPointTransform.h to re orientate a translated 3D model given the original model.<BR>
I use many functions of the class vtkIteratorClosestPointTransform, but it gives the linker error only for New(),SetTarget() and SetSource().I am using visual studio 6 alongwith vtk4.4.<BR>
<BR>
It will be really helpful if you could give me any hint at all, it has been taxing me for two days now.<BR>
Alternatively,if somebody could send me working example program using this class in C++,that may be helpful too.<BR>
<BR>
<BR>
error listing and code are as follows:<BR>
<BR>
--------------------Configuration: basic - Win32 Debug--------------------<BR>
Compiling...<BR>
basic.cxx<BR>
Linking...<BR>
basic.obj : error LNK2001: unresolved external symbol &quot;public: void __thiscall vtkIterativeClosestPointTransform::SetTarget(class vtkDataSet *)&quot; (?SetTarget@vtkIterativeClosestPointTransform@@QAEXPAVvtkDataSet@@@Z)<BR>
basic.obj : error LNK2001: unresolved external symbol &quot;public: void __thiscall vtkIterativeClosestPointTransform::SetSource(class vtkDataSet *)&quot; (?SetSource@vtkIterativeClosestPointTransform@@QAEXPAVvtkDataSet@@@Z)<BR>
basic.obj : error LNK2001: unresolved external symbol &quot;public: static class vtkIterativeClosestPointTransform * __cdecl vtkIterativeClosestPointTransform::New(void)&quot; (?New@vtkIterativeClosestPointTransform@@SAPAV1@XZ)<BR>
Debug/basic.exe : fatal error LNK1120: 3 unresolved externals<BR>
Error executing link.exe.<BR>
<BR>
ALL_BUILD - 4 error(s), 0 warning(s)<BR>
<BR>
<BR>
<BR>
<BR>
#include &quot;vtkIterativeClosestPointTransform.h&quot;<BR>
#include &quot;vtkPolyData.h&quot;<BR>
#include &quot;vtkXMLPolyDataReader.h&quot;<BR>
#include &quot;vtkTransform.h&quot;<BR>
#include &quot;vtkTransformPolyDataFilter.h&quot;<BR>
int main( int argc, char *argv[] )<BR>
<BR>
{<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //Reader for file 1<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; vtkXMLPolyDataReader *reader1 = vtkXMLPolyDataReader::New();<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; reader1-&gt;SetFileName(&quot;C:\\VtkProjects\\normal\\coneModel.vtp&quot;);<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; vtkPolyData *data =reader1-&gt;GetOutput();<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /reader for file 2<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; vtkXMLPolyDataReader *reader2 = vtkXMLPolyDataReader::New();<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; reader2-&gt;SetFileName(&quot;C:\\VtkProjects\\normal\\coneTrans.vtp&quot;);<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; vtkPolyData *dataChanged =reader2-&gt;GetOutput();<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //DEFINE TRANS FOR ORIENTATION<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; vtkIterativeClosestPointTransform * ReTransform=vtkIterativeClosestPointTransform::New();<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ReTransform-&gt;SetSource(reader2-&gt;GetOutput());<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ReTransform-&gt;SetTarget(reader1-&gt;GetOutput());<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ReTransform-&gt;SetCheckMeanDistance(1);<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ReTransform-&gt;SetMaximumMeanDistance(0.001);<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ReTransform-&gt;SetMaximumNumberOfIterations(3000);<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ReTransform-&gt;SetMaximumNumberOfLandmarks(50);<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //ReTransform-&gt;StartByMatchingCentroidsOff();<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ReTransform-&gt;Update();<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return(0);<BR>
<BR>
}<BR>
<BR>
<BR>
Best Regards,<BR>
Salman Bhatti</FONT>
</P>

</BODY>
</HTML>