<?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 for Cris's Image Analysis Blog</title>
	<atom:link href="http://www.cb.uu.se/~cris/blog/index.php/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.cb.uu.se/~cris/blog</link>
	<description>theory, methods, algorithms, applications</description>
	<lastBuildDate>Wed, 08 May 2013 06:13:17 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Gaussian filtering by Zhao Zongyi</title>
		<link>http://www.cb.uu.se/~cris/blog/index.php/archives/22/comment-page-1#comment-1989</link>
		<dc:creator>Zhao Zongyi</dc:creator>
		<pubDate>Wed, 08 May 2013 06:13:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.cb.uu.se/~cris/blog/?p=22#comment-1989</guid>
		<description><![CDATA[It&#039;s clear and helpful.Thank you.]]></description>
		<content:encoded><![CDATA[<p>It&#8217;s clear and helpful.Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A simple implementation of snakes by Cris Luengo</title>
		<link>http://www.cb.uu.se/~cris/blog/index.php/archives/217/comment-page-1#comment-1940</link>
		<dc:creator>Cris Luengo</dc:creator>
		<pubDate>Thu, 02 May 2013 06:47:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.cb.uu.se/~cris/blog/?p=217#comment-1940</guid>
		<description><![CDATA[Hi Sam,

I think the difference might be in the indexing: for &lt;code&gt;dip_image&lt;/code&gt; objects, the first index goes horizontally, and start at 0. You probably need to switch the x and y coordinates, and might need to add 1 (depending on how you defined the snake earlier).]]></description>
		<content:encoded><![CDATA[<p>Hi Sam,</p>
<p>I think the difference might be in the indexing: for <code>dip_image</code> objects, the first index goes horizontally, and start at 0. You probably need to switch the x and y coordinates, and might need to add 1 (depending on how you defined the snake earlier).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A simple implementation of snakes by Sam</title>
		<link>http://www.cb.uu.se/~cris/blog/index.php/archives/217/comment-page-1#comment-1939</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Thu, 02 May 2013 05:30:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.cb.uu.se/~cris/blog/?p=217#comment-1939</guid>
		<description><![CDATA[Hi Cris, great tutorial. I was just trying to implement this without the toolbox, I&#039;ve replaced 

f = gradient(gradmag(img,30));

with,

[FX, FY] = gradient(double(img));
H = fspecial(&#039;gaussian&#039;, 30);
FY = imfilter(FY, H); 
FX = imfilter(FX, H); 

And it works fine, I tried replacing 

fex = get_subpixel(f{1},coords,&#039;linear&#039;);
fey = get_subpixel(f{2},coords,&#039;linear&#039;);

with, 

F = griddedInterpolant(FX, &#039;linear&#039;);
    for i = 1:length(x)
        fex=F(x,y);
    end
    
G = griddedInterpolant(FY, &#039;linear&#039;);
    for i = 1:length(y)
        fey=G(x,y);
    end

etc, and it does something very different.. Is my inderstanding of the sub_pixel function incorrect? 

Thanks!]]></description>
		<content:encoded><![CDATA[<p>Hi Cris, great tutorial. I was just trying to implement this without the toolbox, I&#8217;ve replaced </p>
<p>f = gradient(gradmag(img,30));</p>
<p>with,</p>
<p>[FX, FY] = gradient(double(img));<br />
H = fspecial(&#8216;gaussian&#8217;, 30);<br />
FY = imfilter(FY, H);<br />
FX = imfilter(FX, H); </p>
<p>And it works fine, I tried replacing </p>
<p>fex = get_subpixel(f{1},coords,&#8217;linear&#8217;);<br />
fey = get_subpixel(f{2},coords,&#8217;linear&#8217;);</p>
<p>with, </p>
<p>F = griddedInterpolant(FX, &#8216;linear&#8217;);<br />
    for i = 1:length(x)<br />
        fex=F(x,y);<br />
    end</p>
<p>G = griddedInterpolant(FY, &#8216;linear&#8217;);<br />
    for i = 1:length(y)<br />
        fey=G(x,y);<br />
    end</p>
<p>etc, and it does something very different.. Is my inderstanding of the sub_pixel function incorrect? </p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A simple implementation of snakes by Cris Luengo</title>
		<link>http://www.cb.uu.se/~cris/blog/index.php/archives/217/comment-page-1#comment-1913</link>
		<dc:creator>Cris Luengo</dc:creator>
		<pubDate>Sun, 28 Apr 2013 11:03:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.cb.uu.se/~cris/blog/?p=217#comment-1913</guid>
		<description><![CDATA[James,

&lt;code&gt;x&lt;/code&gt; is a vector, as is &lt;code&gt;fex&lt;/code&gt;. Thus, &lt;code&gt;P*(x+gamma*fex)&lt;/code&gt; is a matrix times a vector, which results in a vector again. In effect, this statement computes the new coordinates for all snake control points in one operation.]]></description>
		<content:encoded><![CDATA[<p>James,</p>
<p><code>x</code> is a vector, as is <code>fex</code>. Thus, <code>P*(x+gamma*fex)</code> is a matrix times a vector, which results in a vector again. In effect, this statement computes the new coordinates for all snake control points in one operation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Panoramic photograph stitching by Cris Luengo</title>
		<link>http://www.cb.uu.se/~cris/blog/index.php/archives/76/comment-page-1#comment-1912</link>
		<dc:creator>Cris Luengo</dc:creator>
		<pubDate>Sun, 28 Apr 2013 10:58:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.cb.uu.se/~cris/blog/?p=76#comment-1912</guid>
		<description><![CDATA[Hrushikesh,

I&#039;m not at all clear with what you&#039;re asking.]]></description>
		<content:encoded><![CDATA[<p>Hrushikesh,</p>
<p>I&#8217;m not at all clear with what you&#8217;re asking.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A simple implementation of snakes by James</title>
		<link>http://www.cb.uu.se/~cris/blog/index.php/archives/217/comment-page-1#comment-1911</link>
		<dc:creator>James</dc:creator>
		<pubDate>Sun, 28 Apr 2013 10:18:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.cb.uu.se/~cris/blog/?p=217#comment-1911</guid>
		<description><![CDATA[Just wanting to clarify, for

fex = get_subpixel(f{1},coords,&#039;linear&#039;);

Is this just returning an intensity at the specified coordinates of the x-grad matrix? When you do,

x = P*(x+gamma*fex);
y = P*(y+gamma*fey);

It looks like you are reassigning the coordinate of the snake to be a matrix (P) multiplied by a constant (x + gamma*fcx), which will mean your coordinates of your matrix on the next pass through will then be matrices? What am I missing? 

Thanks]]></description>
		<content:encoded><![CDATA[<p>Just wanting to clarify, for</p>
<p>fex = get_subpixel(f{1},coords,&#8217;linear&#8217;);</p>
<p>Is this just returning an intensity at the specified coordinates of the x-grad matrix? When you do,</p>
<p>x = P*(x+gamma*fex);<br />
y = P*(y+gamma*fey);</p>
<p>It looks like you are reassigning the coordinate of the snake to be a matrix (P) multiplied by a constant (x + gamma*fcx), which will mean your coordinates of your matrix on the next pass through will then be matrices? What am I missing? </p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Panoramic photograph stitching by hrushikesh</title>
		<link>http://www.cb.uu.se/~cris/blog/index.php/archives/76/comment-page-1#comment-1902</link>
		<dc:creator>hrushikesh</dc:creator>
		<pubDate>Sat, 27 Apr 2013 06:31:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.cb.uu.se/~cris/blog/?p=76#comment-1902</guid>
		<description><![CDATA[hi cris. i am engineering student and working on my BE project since last 6 months. i am trying for &#039;3D VIEW&#039; of an image. It accepts image and makes it 3D. but not getting at all. plz help mi out from this.]]></description>
		<content:encoded><![CDATA[<p>hi cris. i am engineering student and working on my BE project since last 6 months. i am trying for &#8217;3D VIEW&#8217; of an image. It accepts image and makes it 3D. but not getting at all. plz help mi out from this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Panoramic photograph stitching &#8212; again by Ramzan Ullah</title>
		<link>http://www.cb.uu.se/~cris/blog/index.php/archives/393/comment-page-1#comment-1846</link>
		<dc:creator>Ramzan Ullah</dc:creator>
		<pubDate>Fri, 19 Apr 2013 22:43:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.cb.uu.se/~cris/blog/?p=393#comment-1846</guid>
		<description><![CDATA[Dear Cris, a bundle of thanks for helping me out. Everything is fine now. I am novice to Matlab and image stitching but I have learned a lot from your code. My sincere salute to you,  People like you are great asset to the learner like me.]]></description>
		<content:encoded><![CDATA[<p>Dear Cris, a bundle of thanks for helping me out. Everything is fine now. I am novice to Matlab and image stitching but I have learned a lot from your code. My sincere salute to you,  People like you are great asset to the learner like me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Panoramic photograph stitching &#8212; again by Cris Luengo</title>
		<link>http://www.cb.uu.se/~cris/blog/index.php/archives/393/comment-page-1#comment-1836</link>
		<dc:creator>Cris Luengo</dc:creator>
		<pubDate>Thu, 18 Apr 2013 18:25:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.cb.uu.se/~cris/blog/?p=393#comment-1836</guid>
		<description><![CDATA[Hi Ramzan,

The file &#039;bigsur.jpg&#039; is the stitched result from the first post on panoramic stitching that I wrote (linked in the beginning of this post). If you use that image, the dimensions for the three little images should match and the &#039;cat&#039; command should work fine. But as I said to Prashanth above, this part of the script is only to make the image comparing the three stitching methods, it is not necessary at all for stitching.]]></description>
		<content:encoded><![CDATA[<p>Hi Ramzan,</p>
<p>The file &#8216;bigsur.jpg&#8217; is the stitched result from the first post on panoramic stitching that I wrote (linked in the beginning of this post). If you use that image, the dimensions for the three little images should match and the &#8216;cat&#8217; command should work fine. But as I said to Prashanth above, this part of the script is only to make the image comparing the three stitching methods, it is not necessary at all for stitching.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Panoramic photograph stitching by Cris Luengo</title>
		<link>http://www.cb.uu.se/~cris/blog/index.php/archives/76/comment-page-1#comment-1835</link>
		<dc:creator>Cris Luengo</dc:creator>
		<pubDate>Thu, 18 Apr 2013 18:22:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.cb.uu.se/~cris/blog/?p=76#comment-1835</guid>
		<description><![CDATA[Hi Ramzan,

Please read the comments in the M-file: the files &#039;bigsur1.jpg&#039; and &#039;bigsur2.jpg&#039; that you find at the top of this post are the downsampled versions of &#039;BigSur1.JPG&#039; and &#039;BigSur2.JPG&#039; that the script looks for. Just skip the first 6 lines of code, and you should be fine!]]></description>
		<content:encoded><![CDATA[<p>Hi Ramzan,</p>
<p>Please read the comments in the M-file: the files &#8216;bigsur1.jpg&#8217; and &#8216;bigsur2.jpg&#8217; that you find at the top of this post are the downsampled versions of &#8216;BigSur1.JPG&#8217; and &#8216;BigSur2.JPG&#8217; that the script looks for. Just skip the first 6 lines of code, and you should be fine!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
