Slashdot Log In
An Advance In Image Recognition Software
Posted by
kdawson
on Saturday May 24, @08:45PM
from the needle-in-a-haystack dept.
from the needle-in-a-haystack dept.
Roland Piquepaille alerts us to work by US and Israeli researchers who have developed software that can identify the subject of an image characterized using only 256 to 1024 bits of data. The researchers said this "could lead to great advances in the automated identification of online images and, ultimately, provide a basis for computers to see like humans do." As an example, they've picked up about 13 million images from the Web and stored them in a searchable database of just 600 MB, making it possible to search for similar pictures through millions of images in less than a second on a typical PC. The lead researcher, MIT's Antonio Torralba, will be presenting the research next month at a conference on Computer Vision and Pattern Recognition.
Related Stories
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
Full
Abbreviated
Hidden
Loading... please wait.

There goes the neighborhood (Score:4, Funny)
Reply to This
Re: (Score:2)
Re:There goes the neighborhood (Score:5, Insightful)
Reply to This
Parent
Re:There goes the neighborhood (Score:5, Funny)
Reply to This
Parent
Re:There goes the neighborhood (Score:5, Informative)
Reply to This
Parent
Like every other "advance" in image recognition... (Score:3, Insightful)
Until then, it's snake oil, as far as I'm concerned.
Reply to This
Re:Like every other "advance" in image recognition (Score:5, Funny)
No wonder those snakes are not only so quiet, but I never even see 'em coming!
Geez. We don't stand a chance.
Reply to This
Parent
Re:Like every other "advance" in image recognition (Score:5, Funny)
Reply to This
Parent
Re:Like every other "advance" in image recognition (Score:3, Informative)
From what I can tell, it's basically, "blur the image down to only a few hundred pixels and then you have less data to comb through!"
Re:Like every other "advance" in image recognition (Score:3, Interesting)
Re:Like every other "advance" in image recognition (Score:5, Informative)
http://people.csail.mit.edu/torralba/tinyimages/ [mit.edu]
Reply to This
Parent
Oh thats really simple to do... (Score:2)
Of course it helps if you read the papers... (Score:4, Informative)
I just finished reading "Small Codes and Large Image Databases for Recognition" written by the guy. All he did was implemented Geoff Hinton's idea of databasing images with a binarized coefficients produced by Restricted Boltzmann Machines.
Hinton himself gave a talk on it for Google here:
http://www.youtube.com/watch?v=AyzOUbkUf3M [youtube.com]
Actually I'm wondering, is he plagiarizing Hinton?
Reply to This
Re: (Score:3, Insightful)
Re:Of course it helps if you read the papers... (Score:4, Insightful)
This research involves the use of one of the largest image databases seen in computer vision. It shows that you can do extremely rapid scene matching for databases of this scale. No, that's not obvious no matter what you think. This image data is fairly high dimensional.
This research says something about the space of likely scenes and it might be a key enabling technology to a lot of the heavily data driven computer vision and computer graphics approaches popping up lately.
Reply to This
Parent
Oh really? (Score:2)
I guess nobody there thought to do the math before making these claims. This story probably shouldn't have made it to the front page; it's less than useful.
Re: (Score:3, Insightful)
No one said they were going to identify individual people with this. The main gist of this research seems to be efficiency (in both space and time, if I read it cor
not so much an advance (Score:2)
But can it tell the difference between.... (Score:2)
How will spammers make use of this? Well just make that viagra pill be reflected in a coke bottle.
anyone for a random bit generator to see what random results gets labeled?
Wonder what fractals might produce?
moral of the qu
Search Jenna Jameson? (Score:5, Funny)
Reply to This
Scary. (Score:2)
Very cool stuff... (Score:2, Interesting)
That is, there are a number of image similarity algorit
Re:Very cool stuff... (Score:4, Informative)
A reasonable descriptor which produces distances that seem somewhat correlated with human perception would indeed be Antonio Torralba and Aude Oliva's gist descriptor.
http://people.csail.mit.edu/torralba/code/spatialenvelope/ [mit.edu]
It's become quite popular in computer vision and computer graphics for scene matching.
Reply to This
Parent
Re: (Score:3, Insightful)
Some of those scientists are actually pretty smrt.
Re:I forsee nefarious law enforcement uses (Score:5, Informative)
Another way is to somehow identify the orientation. An simple way to do that is to find the axis along which there's maximum variation and rotate until those axes match in both images.
Pixel by pixel co-registration basically does look at a similarity measure for a lot of variations on the affine transform. You generally don't have to look at them all though: you use an iterative algorithm with a clever optimization strategy so your transform gets better and better instead of searching through the parameter space randomly.
Reply to This
Parent