<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Image Recognition</title>
<link rel="self" type="application/atom+xml" title="Image Recognition" href="http://www.feeddistiller.com/blogs/Image Recognition/atom.xml"/>
<link rel="alternate" type="application/atom+rss" title="Image Recognition" href="http://www.feeddistiller.com/blogs/Image Recognition/feed.rss"/>
<subtitle>Computers that recognise images. A hard AI Problem.</subtitle>
<feedid>358</feedid>
<feedname>Image Recognition</feedname>
<updated>2012-02-09T05:00:21</updated>
<author>
<name>Neal Pointer</name>
<email>barry.david.adams@googlemail.com</email>
</author>

<entry>
<from href="http://feeds.feedburner.com/SteveOnImageProcessing">Steve on Image Processing</from>
<title>New comment policy</title>
<link href="http://feedproxy.google.com/~r/SteveOnImageProcessing/~3/hV0yFQAwA5E/"/>
<updated>2012-02-07T00:28:31</updated>
<summary>I want to let readers know that I&apos;m experimenting with a new comment policy. I started this blog at the beginning of 2006. At first, I left comments open and only filtered out obvious spam. Soon, though, I found that I couldn&apos;t handle the volume of comments. Also, most comments were off-topic, which I thought [...]</summary>
<id>ae21d26695f5abbb7ac226038711e9ef</id>
</entry>

<entry>
<from href="http://feeds.feedburner.com/SteveOnImageProcessing">Steve on Image Processing</from>
<title>Jobs and such</title>
<link href="http://feedproxy.google.com/~r/SteveOnImageProcessing/~3/2UWiHPxCISc/"/>
<updated>2012-01-31T18:59:38</updated>
<summary>Last week I happened to come across a summary I wrote after completing my first month at MathWorks. This was quite a while a go ... December 1993! I was hired to take over development of the Image Processing Toolbox, which had just shipped version 1.0. From the summary, I see that I spent a [...]</summary>
<id>68ad631f6d4072116b62ab273a3dea19</id>
</entry>

<entry>
<from href="http://feeds.feedburner.com/SteveOnImageProcessing">Steve on Image Processing</from>
<title>Generating Hilbert curves</title>
<link href="http://feedproxy.google.com/~r/SteveOnImageProcessing/~3/2cKFqoqEmig/"/>
<updated>2012-01-26T04:40:47</updated>
<summary>This week I came across some files I wrote about 16 years ago to compute Hilbert curves. A Hilbert curve is a type of fractal curve; here is a sample: I can&apos;t remember why I was working on this. Possibly I was anticipating that 16 years in the future, during an unusually mild New England [...]</summary>
<id>a5b7f384334a6302306d4521dc0d219b</id>
</entry>

<entry>
<from href="http://feeds.feedburner.com/SteveOnImageProcessing">Steve on Image Processing</from>
<title>Five years ago: August, September, and October 2006</title>
<link href="http://feedproxy.google.com/~r/SteveOnImageProcessing/~3/FoV5SU6TFtc/"/>
<updated>2012-01-13T20:50:33</updated>
<summary>Much of the information I posted in this blog years ago is still useful today. Image processing theory hasn&apos;t been completely been overturned since then, and I&apos;m still talking about MATLAB after all. For the benefit of readers who have joined the party more recently, I will occasionally recap the useful bits that I posted [...]</summary>
<id>b9eb9a482bcf78d0f11f27918c05a4a7</id>
</entry>

<entry>
<from href="http://feeds.feedburner.com/SteveOnImageProcessing">Steve on Image Processing</from>
<title>Modifying centroid locations in an image – an application of linear indexing</title>
<link href="http://feedproxy.google.com/~r/SteveOnImageProcessing/~3/PYkqk3UB0D8/"/>
<updated>2011-12-28T00:00:45</updated>
<summary>Blog reader Mike posed the following question recently: If you have a bunch of point locations (for example, object centroids), how you make a binary image containing just those points? For example, consider this image:bw = imread(&apos;text.png&apos;); imshow(bw, &apos;InitialMagnification&apos;, 200) How can we make an image like this, where the dots are located at the [...]</summary>
<id>e826d8d9335f4948071ed1494a4dfbe5</id>
</entry>

<entry>
<from href="http://feeds.feedburner.com/SteveOnImageProcessing">Steve on Image Processing</from>
<title>Batch processing files in another folder</title>
<link href="http://feedproxy.google.com/~r/SteveOnImageProcessing/~3/09la88JUQzY/"/>
<updated>2011-12-23T00:00:31</updated>
<summary>Blog reader Asadullah posted the following question last week on my old post about batch processing: I am trying to process some images by following the MATLAB demo. After getting the names of files when I try to see any of the files then it gives the error. The detail is as follows: &amp;#62;&amp;#62; fileFolder [...]</summary>
<id>68e901583fa1eeca8bf9df196b62fc6e</id>
</entry>

<entry>
<from href="http://feeds.feedburner.com/SteveOnImageProcessing">Steve on Image Processing</from>
<title>Exploring shortest paths – wrapping up</title>
<link href="http://feedproxy.google.com/~r/SteveOnImageProcessing/~3/PK3tyjwCCe4/"/>
<updated>2011-12-21T13:20:18</updated>
<summary>For the past several weeks I&apos;ve been writing about shortest-path problems in image processing: finding the shortest path between two points in an image, with and without constraints. Applications included the practical (path finding in a skeleton image) and fun (maze solving). Along the way, I&apos;ve described: the basic idea of finding shortest paths by [...]</summary>
<id>13ed7edd9e0b3a2ef9fd318c2db499d9</id>
</entry>

<entry>
<from href="http://feeds.feedburner.com/SteveOnImageProcessing">Steve on Image Processing</from>
<title>Exploring shortest paths – part 5</title>
<link href="http://feedproxy.google.com/~r/SteveOnImageProcessing/~3/0DMRYHoF7Go/"/>
<updated>2011-12-13T07:00:45</updated>
<summary>In this post in the Exploring shortest paths series, I make things a little more complicated (and interesting) by adding constraints to the shortest path problem. Last time, I showed this example of finding the shortest paths between the &quot;T&quot; and the sideways &quot;s&quot; in this image: url = &apos;http://blogs.mathworks.com/images/steve/2011/two-letters-cropped.png&apos;; bw = imread(url);And this was [...]</summary>
<id>304351ff7942ce710e9ab7e91305fcb6</id>
</entry>

<source>
<title>Steve on Image Processing</title>
<link href="http://feeds.feedburner.com/SteveOnImageProcessing"/>
<count>8</count>
</source>

</feed>

