photography

Is it possible to detect blur, exposure, orientation of an image programmatically?

六眼飞鱼酱① 提交于 2019-12-04 08:19:45
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 ? 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 : Sharpening an image and comparing it to the original Using wavelets to detect blurring ( Link1 ) Hough Transform ( Link

Determining camera parameters

*爱你&永不变心* 提交于 2019-12-03 22:11:47
Given a picture taken by a simple digital that contains an image of a rectangle of known dimensions. How can I - to some degree of accuracy - determine the parameters of this camera? I am mostly interested in Pan-, Tilt- and Swing angles. Optionally distance to the rectangle would be nice. I acknowledge the fact that the focal length and resolution of the camera should be known, but it can be assumed that they are available (for example through exif metadata). Are there any simple algorithms for this problems? What you are looking for are camera calibration algorithms. A commonly used one is

What is “antibanding” in photographing?

最后都变了- 提交于 2019-12-03 12:29:34
What is "antibanding" in photography? I read this term in Android documentation for the android.hardware.Camera.Parameters.setAntibanding() method. Nice example from this website : Gradient effects may suffer from banding (contouring) where noticeable steps can be seen from one shade to another. Apparently this artifact can be typically caused by jpeg compression. The Antibanding() feature tries to prevent this artifact. Alexander Antibanding function should decrease fluctuations in brightness of frames or images, caused by a light source oscillations and exposure control algorithm. If light

Obtaining iPhone Photo Exposure Information

狂风中的少年 提交于 2019-12-02 02:55:13
问题 Is there any way to get the exposure settings (aperture, shutter speed, ISO) for a photo taken on an iPhone? An app running on the iPhone can use the UIImagePickerController interface for taking pictures, but that doesn't provide much info about the picture. The EXIF data for a photo taken on the iPhone contains aperture info, but not shutter speed or ISO. 回答1: This is not currently possible using the SDK. If it's something you think is needed, I suggest you file an enhancement request with

How to get the EXIF data from a file using C# [closed]

六月ゝ 毕业季﹏ 提交于 2019-11-26 01:58:02
问题 I would like to write a small program in C# which goes through my jpeg photos and, for example, sorts them into dated folders (using MY dating conventions, dammit...). Does anyone know a relatively easy way to get at the EXIF data such as Date And Time or Exposure programatically? Thanks! 回答1: Check out this metadata extractor. It is written in Java but has also been ported to C#. I have used the Java version to write a small utility to rename my jpeg files based on the date and model tags.