You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
Original issue reported on code.google.com by
[email protected]
on 18 Apr 2010 at 8:14Attachments:
The text was updated successfully, but these errors were encountered: