<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style>
</head>
<body class='hmmessage'>
hi, <BR>
&nbsp;<BR>
great ! it was built. I didnt create a new image, just added the pointer to my&nbsp;image .<BR>
&nbsp;<BR>
But now , i cant debug this <BR>
it breaks on <BR><FONT size=2>
std::cout &lt;&lt;(</FONT><FONT color=#0000ff size=2><FONT color=#0000ff size=2>float</FONT></FONT><FONT size=2>)iterator.Get() &lt;&lt; std::endl;<BR>
</FONT>why?<BR>
and&nbsp;I cant add&nbsp;image to my pipeline <BR>
when i add&nbsp;it i get this error <BR>
&nbsp;<BR><FONT size=1>
<FONT size=2>error C2039: 'SetInput' : is not a member of 'itk::Image&lt;TPixel,VImageDimension&gt;</FONT><BR>
<FONT size=2></FONT>&nbsp;<BR>
<FONT size=2>thanks</FONT><BR>
</FONT><BR>&nbsp;<BR>

<HR id=stopSpelling>
Date: Thu, 21 Apr 2011 13:38:01 -0400<BR>Subject: Re: [Insight-users] drawing a line<BR>From: daviddoria@gmail.com<BR>To: xlolla28x@hotmail.com<BR>CC: insight-users@itk.org<BR><BR>
<DIV class=ecxgmail_quote>2011/4/21 LaMoOsH .. <SPAN dir=ltr>&lt;<A href="mailto:xlolla28x@hotmail.com">xlolla28x@hotmail.com</A>&gt;</SPAN><BR>
<BLOCKQUOTE class=ecxgmail_quote style="PADDING-LEFT: 1ex; BORDER-LEFT: #ccc 1px solid">
<DIV>Hi, <BR>&nbsp;<BR>Thank you for your help !<BR>&nbsp;<BR>I did what u told&nbsp;me .. and I still get the same error <BR>
<DIV class=ecxim>&nbsp;<BR><FONT size=1><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; *'</FONT><BR>&nbsp;<BR></FONT></DIV>how can&nbsp;I fix it ?<BR>&nbsp;<BR>thanks <BR></DIV></BLOCKQUOTE>
<DIV><BR>This builds fine for me:<BR><BR>#include &lt;iostream&gt;<BR><BR>#include "itkLineConstIterator.h"<BR><BR>int main(int argc, char *argv[])<BR>{&nbsp; <BR>&nbsp; typedef itk::Image&lt;unsigned char, 2&gt; ImageType;<BR>&nbsp; ImageType::Pointer image = ImageType::New();<BR>&nbsp; <BR>&nbsp; typedef itk::LineConstIterator&lt; ImageType &gt; LineIteratorType;<BR>&nbsp; ImageType::IndexType point0;<BR>&nbsp; point0[0] = 170.91;<BR>&nbsp; point0[1] = 144.438;<BR>&nbsp; <BR>&nbsp; ImageType::IndexType point1;<BR>&nbsp; point1[0] = 170.91;<BR>&nbsp; point1[1] = 450.510;<BR>&nbsp; <BR>&nbsp; LineIteratorType it( image, point0, point1);<BR>&nbsp; it.GoToBegin();<BR>&nbsp; while (!it.IsAtEnd())<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp; std::cout &lt;&lt; (float)it.Get() &lt;&lt; std::endl;<BR>&nbsp;&nbsp;&nbsp; ++it;<BR>&nbsp;&nbsp;&nbsp; }<BR><BR>&nbsp; return EXIT_SUCCESS;<BR>}<BR>&nbsp;</DIV></DIV>                                               </body>
</html>