March 2020
Intermediate to advanced
366 pages
9h 8m
English
Assuming the principle of reciprocity for all the camera parameters that we discussed previously, let's try to come up with a function—exposure_strength—that returns a time equivalent to the exposure:
def exposure_strength(path, iso_ref=100, f_stop_ref=6.375):
with open(path, 'rb') as infile: tags = exifread.process_file(infile)
[f_stop] = tags['EXIF ApertureValue'].values ...
Read now
Unlock full access