Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sensor Size not found in Exif #3

Open
GoogleCodeExporter opened this issue Mar 31, 2016 · 0 comments
Open

Sensor Size not found in Exif #3

GoogleCodeExporter opened this issue Mar 31, 2016 · 0 comments

Comments

@GoogleCodeExporter
Copy link

In Noah original shell script he first checks the database for camera 
info for a particular model.  If he doesn't find it he then looks in the 
EXIF data.

With the sensor size Bundler incorporated twice as many image in my 
particular test.

I've written a patch.  The second index of the FocalPlaneXResolution tag 
tells you how large the sensor is in . . . some units.  And the 
FocalPlaneResolutionUnit tells you what those units are.

Noah uses jhead to read the EXIF data so I looked at jhead's source, his 
formula for finding the CCD size didn't work or make sense to me.

line 1054 - ImageInfo.CCDWidth = (float)(ExifImageWidth * FocalplaneUnits 
/ FocalplaneXRes);

My formula is simply CCDWidht = FocalPlaneXResolution[1] * 
FocalPlaneResolutionUnit

Original issue reported on code.google.com by [email protected] on 18 Apr 2010 at 8:14

Attachments:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant