<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style>
</head>
<body class='hmmessage'>
Hello, <BR>
&nbsp;<BR>
I am new to itk, and trying to draw a line between two points.<BR>
&nbsp;<BR><FONT color=#0000ff size=2><FONT color=#0000ff size=2>
typedef</FONT></FONT><FONT size=2> itk::LineConstIterator&lt; OutputImageType &gt; LineIteratorType;<BR>
LineIteratorType it( reader, (170.910,144.438),(170.910,450.510) );<BR>
it.GoToBegin();<BR>
</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>while</FONT></FONT><FONT size=2> (!it.IsAtEnd())<BR>
{<BR>
std::cout &lt;&lt; (</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>float</FONT></FONT><FONT size=2>)it.Get() &lt;&lt; std::endl;<BR>
++it;<BR>
}<BR>
&nbsp;<BR>
can I know what is wring with this code?<BR>
the error is <BR>
&nbsp;<BR><FONT size=2>
error C2664: 'itk::LineConstIterator&lt;TImage&gt;::LineConstIterator(const itk::Image&lt;TPixel,VImageDimension&gt; *,const itk::Index&lt;VIndexDimension&gt; &amp;,const itk::Index&lt;VIndexDimension&gt; &amp;)' : cannot convert parameter 1 from 'itk::SmartPointer&lt;TObjectType&gt;' to 'const itk::Image&lt;TPixel,VImageDimension&gt; *'<BR>
&nbsp;<BR>
i think the way im writing the points might be wrong. not sure.<BR>
my reader&nbsp;a reader to an image already defined before and&nbsp;the pixel is of type float. <BR>
output image type is the&nbsp;output of another function that was applied on my image. <BR>
&nbsp;<BR>
hope i get some help.<BR>
&nbsp;<BR>
Thank you. &nbsp;<BR></FONT></FONT>                                               </body>
</html>