Slashdot Mirror


Google Begins Blurring Faces In Street View

mytrip notes a News.com article reporting that Google has begun blurring faces in its Street View service, which has spawned privacy concerns since its introduction last year. Google has been working for a couple of years to advance the state of the art of face recognition. Quoting News.com: 'The technology uses a computer algorithm to scour Google's image database for faces, then blurs them, said John Hanke, director of Google Earth and Google Maps, in an interview at the Where 2.0 conference...' Google wrote about the program in their Lat/Long blog."

5 of 170 comments (clear)

  1. Re:Can you focus out-of-focus pictures by Lobster+Quadrille · · Score: 4, Informative

    You can't add pixels that aren't there, and an out of focus picture is effectively a lower resolution.

    You can, however, apply statistical analysis and AI learning techniques to guess the likely locations of pixels. In that way, you can sharpen a photo somewhat, though it may be inexact. My understanding is that contextual analysis is the next step- if you have pictures of a person and a blurry person, and have more pictures of that person and less-blurry people, you can make predictions about who the fuzzy people are.

    Of course, I wear a beard so that I'll always be fuzzy.

    --
    "The cup is in turn designed for holding hot or cold liquids, and has an open rim and closed base." --US Patent #5425497
  2. Google has been developing this for some time. by lhaeh · · Score: 4, Informative

    This article from a year ago shows that Google has had public implementations of facial recognition for some time. Simply appending &imgtype=face to a Google image search URL will just show images of faces.

  3. Re:What privacy concerns? by Fozzyuw · · Score: 3, Informative

    That's an overly simplified view. Are you saying that in public it should be legal to be able to take pictures of anybody from any angle/viewpoint? (eg: upskirt)

    Interesting that you should say that... as this was a recent BBC article I read. And it's not even "upskirt", it's just taking pictures of peoples behinds. Of course, the best part is the last sentence...

    He might have some explaining to do when he finally gets home.
    --
    "The past was erased, the erasure was forgotten, the lie became truth." ~1984 George Orwell
  4. Re:Can you focus out-of-focus pictures by pavon · · Score: 5, Informative

    You can't add pixels that aren't there, and an out of focus picture is effectively a lower resolution. No, it isn't. Think about an unfocused camera - all the light is still hitting film/CCD, it is just spread out. So from an information theory point of view you haven't lost any data, you just put it into another form. If you consider what would be a single point of light, the energy in that point is spread out in a normal distribution (aka bell curve, aka gaussian). So the blurred image is just all these Gaussians functions overlayed on top of each other. Computer blurring algorithms do pretty much the same thing.

    From a signal processing perspective, this is the same as convolving with a Gaussian. And if you take the Fourier transform of that blurred image, you get the transform of the image multiplied by the transform of the Gaussian (which is just another Gaussian). From there all you have to do is divide by this Gaussian, take the inverse transform, and walla, you have the desired non-blurred image. This is called a deconvolution, and I've written code to do this for an image processing class.

    There are some caveats. You have to guess how blurred the image is - what focal length is and what not. Noise and compression can kill you, so you need to filter those out first (or limit your deconvolution filter to low frequency content). In addition at the edges of the image (or edge of the blur boundary) information is genuinely lost as the gaussian falls outside the boundary and is discarded.

    Focus Magic is a commercial package that refocuses blurred images, and they have some interesting sample photos.
  5. Re:Can you focus out-of-focus pictures by Solandri · · Score: 4, Informative

    You can't add pixels that aren't there, and an out of focus picture is effectively a lower resolution.

    You can, however, apply statistical analysis and AI learning techniques to guess the likely locations of pixels. In that way, you can sharpen a photo somewhat, though it may be inexact. My understanding is that contextual analysis is the next step- if you have pictures of a person and a blurry person, and have more pictures of that person and less-blurry people, you can make predictions about who the fuzzy people are.

    This is wrong. An out of focus picture is not lower resolution. All the original information is still there, it's just been smeared in a mathematically consistent manner - something called the point spread function of the lens at that degree of misfocus. It's very possible to mathematically focus a misfocused picture after it's been shot. The main barriers are not knowing the particular lens' exact point spread function, sensor noise (the de-convolution spreads the sensor noise to adjacent pixels), and grid resolution. But the site I linked to shows you can still get pretty decent results using a generic PSF.