Why is Google's "face recognition" feature available only in Picasa WEB and not Picasa for the PC? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T11:27:15Z http://stackoverflow.com/feeds/question/383789 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/383789/why-is-googles-face-recognition-feature-available-only-in-picasa-web-and-not-p 1 Why is Google's "face recognition" feature available only in Picasa WEB and not Picasa for the PC? Clay Nichols 2008-12-20T21:56:09Z 2009-06-11T00:23:35Z <p>I friend asked me this today.</p> <p>Picasa Web has a cool (and frightening :-) feature where it will recognize all the faces in your photo album.</p> <p>But the PC (desktop) version doesn't have this.</p> <p>Several reasons I can think of:</p> <ol> <li>They just haven't gotten around to writing the PC version of the code.</li> <li>They are licensing that feature and it costs a lot more (or isn't available) on the PC.</li> <li>Takes a lot of processing power (this seems odd b/c MY PC cycles are free to Google, but they have to pay for for cycles consumed on their server.</li> </ol> <p>Any other thoughts?</p> http://stackoverflow.com/questions/383789/why-is-googles-face-recognition-feature-available-only-in-picasa-web-and-not-p/383809#383809 4 Answer by Oli for Why is Google's "face recognition" feature available only in Picasa WEB and not Picasa for the PC? Oli 2008-12-20T22:11:03Z 2008-12-22T00:46:56Z <p>I'm certain it'll make it out in coming releases but Google is a funny company when it comes to its own competing/complimenting services. One thing is for sure, only somebody on the Picasa team could give an accurate answer.</p> <p>But we could hypothesise several things...</p> <ul> <li>They don't want their code reverse-engineered.</li> <li>(As you say), they aren't licensed to redist</li> <li>It's blocked in the dev version by other new features that aren't complete yet</li> <li>They don't want to release it because they want people to use PicasaWeb as a social photo network.</li> </ul> <p>I don't think processing power is an issue. If they're running it in bulk on their own servers for free, a modern desktop could probably run it without issue.</p> http://stackoverflow.com/questions/383789/why-is-googles-face-recognition-feature-available-only-in-picasa-web-and-not-p/383886#383886 2 Answer by chaos for Why is Google's "face recognition" feature available only in Picasa WEB and not Picasa for the PC? chaos 2008-12-20T23:43:16Z 2008-12-20T23:43:16Z <p>From my limited contact with face recognition software, it's probably the redistribution issue. When I dealt with it, face recognition was its own little world with extremely high per-CPU licensing costs and tremendous paranoia about code getting loose.</p> http://stackoverflow.com/questions/383789/why-is-googles-face-recognition-feature-available-only-in-picasa-web-and-not-p/384443#384443 0 Answer by Loki for Why is Google's "face recognition" feature available only in Picasa WEB and not Picasa for the PC? Loki 2008-12-21T13:07:47Z 2008-12-21T13:17:01Z <p>Actually, its in, just in limited functionality when you do a search, there's an icon to find only photos with faces. The experimental passport feature also works that way.</p> <p>So the answer is:</p> <ul> <li>Not the same base (APIs) available or used and not the same language so its not directly portable.</li> <li>Not the same software and there are no stated goals to make both apps feature equivalent.</li> <li>Programmers are limited and their time is too. They make choices as to what implement now.</li> </ul> http://stackoverflow.com/questions/383789/why-is-googles-face-recognition-feature-available-only-in-picasa-web-and-not-p/384718#384718 0 Answer by Nick for Why is Google's "face recognition" feature available only in Picasa WEB and not Picasa for the PC? Nick 2008-12-21T17:48:51Z 2008-12-21T17:48:51Z <p>No idea if this is the case for Picasa, but there's another case where licensing could be the issue. If the server-side code is using code with a restrictive license with DRM (GPL, for example) which restricts how you can distribute modules using the code. Running that module on a web server, where the user only gets the output, is legal under such licenses. If that code was distributed, there would be many legal requirements attached which would likely be very undesirable for commercial software companies, including google. This is one very good reason to have some capabilities only accessible through web services.</p> http://stackoverflow.com/questions/383789/why-is-googles-face-recognition-feature-available-only-in-picasa-web-and-not-p/972308#972308 2 Answer by Cameron for Why is Google's "face recognition" feature available only in Picasa WEB and not Picasa for the PC? Cameron 2009-06-09T20:25:17Z 2009-06-09T20:25:17Z <p>I'm not so sure it's not a processing issue. It took Google's massive servers 30 minutes to run through all my photos. I can only imagine that same task would have taken days on my local machine.</p> http://stackoverflow.com/questions/383789/why-is-googles-face-recognition-feature-available-only-in-picasa-web-and-not-p/972353#972353 0 Answer by Jay Stevens for Why is Google's "face recognition" feature available only in Picasa WEB and not Picasa for the PC? Jay Stevens 2009-06-09T20:35:47Z 2009-06-09T20:35:47Z <p>This was also the case with <a href="http://www.riya.com" rel="nofollow">Riya</a> (who was arguably the first to market with reliable facial recognition for consumer photo collections).</p> <p>The biggest reasons are likely:</p> <ul> <li>Processing Time (they can't control how fast your CPU is and therefore they can't control the experience). Facial recognition is very likely to be process intensive (this was Riya's stated reason for not doing it client-side)</li> <li>The recognition process requires a LARGE volume of data for processing that is only accessible on the server? (In other words, the process needs to spin through millions of faces, not just the faces that you have on your hard drive?)</li> </ul>