I need to sort a huge number of photos, and remove the blurry images (due to camera shake), the over/under exposed ones and detect whether the image was shot in the landscape or portrait orientation. Can these things be done on an image using an image processing library or are they still beyond the realms of an algorithmic solution ?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
migrated from superuser.com Jul 17 '11 at 20:53
|
Let's look at your question as three separate question. Can I find blurry images? There are some methods for finding blurry images either from :
Can I find images that are under or over exposed? The only way I can think of this is that your overall brightness is either really high or really low. But the problem is that you would have know if the picture was taken at night or day. You could create a histogram of your image and see if it is really skewed one way or the other and that might be some indication of over/under exposure. Can I determine the orientation of the image? There are techniques that have been used such as SVM, Color Moments, Edge Direction Histograms, Bayesian Framework using cues. |
|||||||
|