<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Insight Toolkit Ubuntu Repository</title>
	<atom:link href="http://paulnovo.us/repository/feed" rel="self" type="application/rss+xml" />
	<link>http://paulnovo.us/repository</link>
	<description>paul novotny&#039;s internet home</description>
	<lastBuildDate>Wed, 30 Nov 2011 21:15:28 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: Andre</title>
		<link>http://paulnovo.us/repository/comment-page-1#comment-366</link>
		<dc:creator>Andre</dc:creator>
		<pubDate>Fri, 29 Jul 2011 18:20:08 +0000</pubDate>
		<guid isPermaLink="false">#comment-366</guid>
		<description>Great! Using Ipython I still get to know practical tricks. Thanks a lot !</description>
		<content:encoded><![CDATA[<p>Great! Using Ipython I still get to know practical tricks. Thanks a lot !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: paul</title>
		<link>http://paulnovo.us/repository/comment-page-1#comment-365</link>
		<dc:creator>paul</dc:creator>
		<pubDate>Fri, 29 Jul 2011 14:31:04 +0000</pubDate>
		<guid isPermaLink="false">#comment-365</guid>
		<description>Are you using ipython? I use ipython&#039;s autocomplete to tell if a filter supports different types.

For example, if you type:
a = itk.GradientImageFilter.
and then hit Tab, you will get a list of its member functions along with this:

itk.GradientImageFilter.IF2FF
itk.GradientImageFilter.IF3FF
itk.GradientImageFilter.ISS2FF
itk.GradientImageFilter.ISS3FF
itk.GradientImageFilter.IUC2FF
itk.GradientImageFilter.IUC3FF
itk.GradientImageFilter.IUS2FF
itk.GradientImageFilter.IUS3FF

It takes a bit to get used to this info, these describe the available templates. IF3FF corresponds to:
itk::GradientImageFilter&lt;itk::Image&lt;float, 3&gt;, float, float&gt;</description>
		<content:encoded><![CDATA[<p>Are you using ipython? I use ipython&#8217;s autocomplete to tell if a filter supports different types.</p>
<p>For example, if you type:<br />
a = itk.GradientImageFilter.<br />
and then hit Tab, you will get a list of its member functions along with this:</p>
<p>itk.GradientImageFilter.IF2FF<br />
itk.GradientImageFilter.IF3FF<br />
itk.GradientImageFilter.ISS2FF<br />
itk.GradientImageFilter.ISS3FF<br />
itk.GradientImageFilter.IUC2FF<br />
itk.GradientImageFilter.IUC3FF<br />
itk.GradientImageFilter.IUS2FF<br />
itk.GradientImageFilter.IUS3FF</p>
<p>It takes a bit to get used to this info, these describe the available templates. IF3FF corresponds to:<br />
itk::GradientImageFilter&lt;itk::Image&lt;float, 3&gt;, float, float&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andre</title>
		<link>http://paulnovo.us/repository/comment-page-1#comment-364</link>
		<dc:creator>Andre</dc:creator>
		<pubDate>Fri, 29 Jul 2011 14:17:02 +0000</pubDate>
		<guid isPermaLink="false">#comment-364</guid>
		<description>Can you tell what templating is possible, i.e. does GradientImageFilter support image type [itk.F,3]?</description>
		<content:encoded><![CDATA[<p>Can you tell what templating is possible, i.e. does GradientImageFilter support image type [itk.F,3]?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: paul</title>
		<link>http://paulnovo.us/repository/comment-page-1#comment-310</link>
		<dc:creator>paul</dc:creator>
		<pubDate>Tue, 12 Apr 2011 11:12:25 +0000</pubDate>
		<guid isPermaLink="false">#comment-310</guid>
		<description>&lt;a href=&quot;#comment-309&quot; rel=&quot;nofollow&quot;&gt;@Andrey:&lt;/a&gt; When you set the input of one filter with the output of another, you need to use the GetOutput function. So your last line should be


subtractImageFilter = itk.SubtractImageFilter[image, image, image].New(
Input1 = image, Input2=laplacianImageFilter.GetOutput())
</description>
		<content:encoded><![CDATA[<p><a href="#comment-309" rel="nofollow">@Andrey:</a> When you set the input of one filter with the output of another, you need to use the GetOutput function. So your last line should be</p>
<p>subtractImageFilter = itk.SubtractImageFilter[image, image, image].New(<br />
Input1 = image, Input2=laplacianImageFilter.GetOutput())</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrey</title>
		<link>http://paulnovo.us/repository/comment-page-1#comment-309</link>
		<dc:creator>Andrey</dc:creator>
		<pubDate>Mon, 11 Apr 2011 22:19:07 +0000</pubDate>
		<guid isPermaLink="false">#comment-309</guid>
		<description>Hello,

I am using this ITK package and have following Problem with pipelining:
if I try to run the code below, I get an error with the text: &#039;TypeError: Type error. Got _p_itk__SmartPointerTitk__LaplacianImageFilterTitk__ImageTfloat_3u_t_itk__ImageTfloat_3u_t_t_t, expected _p_itk__SmartPointerTitk__ImageTfloat_3u_t_t&#039;

Has anyone an idea, how the bug is to be fixed. 

The code is:
imageType = itk.Image[itk.F, 3]
reader = itk.ImageFileReader[imageType].New(FileName = &#039;file_name.mhd&#039;)
image = reader.GetOutput()
laplacianImageFilter = itk.LaplacianImageFilter[image, image].New(Input = image)
subtractImageFilter = itk.SubtractImageFilter[image, image, image].New(
        Input1 = image, Input2=laplacianImageFilter)</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I am using this ITK package and have following Problem with pipelining:<br />
if I try to run the code below, I get an error with the text: &#8216;TypeError: Type error. Got _p_itk__SmartPointerTitk__LaplacianImageFilterTitk__ImageTfloat_3u_t_itk__ImageTfloat_3u_t_t_t, expected _p_itk__SmartPointerTitk__ImageTfloat_3u_t_t&#8217;</p>
<p>Has anyone an idea, how the bug is to be fixed. </p>
<p>The code is:<br />
imageType = itk.Image[itk.F, 3]<br />
reader = itk.ImageFileReader[imageType].New(FileName = &#8216;file_name.mhd&#8217;)<br />
image = reader.GetOutput()<br />
laplacianImageFilter = itk.LaplacianImageFilter[image, image].New(Input = image)<br />
subtractImageFilter = itk.SubtractImageFilter[image, image, image].New(<br />
        Input1 = image, Input2=laplacianImageFilter)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: paul</title>
		<link>http://paulnovo.us/repository/comment-page-1#comment-275</link>
		<dc:creator>paul</dc:creator>
		<pubDate>Thu, 02 Dec 2010 15:16:58 +0000</pubDate>
		<guid isPermaLink="false">#comment-275</guid>
		<description>@Sam: It does not include InsightApplications. The current version is 3.20.0.</description>
		<content:encoded><![CDATA[<p>@Sam: It does not include InsightApplications. The current version is 3.20.0.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fabrizio</title>
		<link>http://paulnovo.us/repository/comment-page-1#comment-269</link>
		<dc:creator>Fabrizio</dc:creator>
		<pubDate>Fri, 25 Jun 2010 15:41:51 +0000</pubDate>
		<guid isPermaLink="false">#comment-269</guid>
		<description>very good job, thank you very much!!</description>
		<content:encoded><![CDATA[<p>very good job, thank you very much!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://paulnovo.us/repository/comment-page-1#comment-137</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Thu, 13 May 2010 17:55:02 +0000</pubDate>
		<guid isPermaLink="false">#comment-137</guid>
		<description>Very appreciate your efforts.

does your mentioned dev package contain all libraries in both InsightToolKit and InsightApplications? is this dev package version 3.18.0?</description>
		<content:encoded><![CDATA[<p>Very appreciate your efforts.</p>
<p>does your mentioned dev package contain all libraries in both InsightToolKit and InsightApplications? is this dev package version 3.18.0?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: osman</title>
		<link>http://paulnovo.us/repository/comment-page-1#comment-115</link>
		<dc:creator>osman</dc:creator>
		<pubDate>Sat, 08 May 2010 18:48:28 +0000</pubDate>
		<guid isPermaLink="false">#comment-115</guid>
		<description>&lt;a href=&quot;#comment-113&quot; rel=&quot;nofollow&quot;&gt;@osman:&lt;/a&gt; 
OK. I experimented by making changes to the cmake files to replace -litkzlib  with -lITKznz  and it worked. I got executables and they work ok.
Thanks again for the ubuntu repositories.</description>
		<content:encoded><![CDATA[<p><a href="#comment-113" rel="nofollow">@osman:</a><br />
OK. I experimented by making changes to the cmake files to replace -litkzlib  with -lITKznz  and it worked. I got executables and they work ok.<br />
Thanks again for the ubuntu repositories.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: osman</title>
		<link>http://paulnovo.us/repository/comment-page-1#comment-113</link>
		<dc:creator>osman</dc:creator>
		<pubDate>Sat, 08 May 2010 17:01:41 +0000</pubDate>
		<guid isPermaLink="false">#comment-113</guid>
		<description>Thanks for providing the libs. I am trying to build a free meshing program(IA-FEMesh) on my 64 bit Karmic.  I had to install your ITK libs and  dev. But still getting a missing lib during link:
/usr/bin/ld: cannot find -litkzlib
now is that the same as libITKznz that seems to be installed??
Thanks in advance</description>
		<content:encoded><![CDATA[<p>Thanks for providing the libs. I am trying to build a free meshing program(IA-FEMesh) on my 64 bit Karmic.  I had to install your ITK libs and  dev. But still getting a missing lib during link:<br />
/usr/bin/ld: cannot find -litkzlib<br />
now is that the same as libITKznz that seems to be installed??<br />
Thanks in advance</p>
]]></content:encoded>
	</item>
</channel>
</rss>

