forked from daerduoCarey/PanoramaImageViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconvert_exr_to_log_intensity.py
32 lines (25 loc) · 1010 Bytes
/
convert_exr_to_log_intensity.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import OpenEXR, Imath
import numpy as np
import os, sys
from scipy.misc import imsave
import matplotlib.pyplot as plt
in_file = sys.argv[1]
log_int_file = sys.argv[2]
log_int_visu_file = sys.argv[3]
pt = Imath.PixelType(Imath.PixelType.FLOAT)
golden = OpenEXR.InputFile(in_file)
dw = golden.header()['dataWindow']
size = (dw.max.x - dw.min.x + 1, dw.max.y - dw.min.y + 1)
redstr = golden.channel('R', pt)
red = np.fromstring(redstr, dtype = np.float32)
red.shape = (size[1], size[0]) # Numpy arrays are (row, col)
greenstr = golden.channel('G', pt)
green = np.fromstring(greenstr, dtype = np.float32)
green.shape = (size[1], size[0]) # Numpy arrays are (row, col)
bluestr = golden.channel('B', pt)
blue = np.fromstring(bluestr, dtype = np.float32)
blue.shape = (size[1], size[0]) # Numpy arrays are (row, col)
luminance = 0.2126 * red + 0.7152 * green + 0.0722 * blue
log_intensity = np.log10(luminance+1e-6)
plt.imsave(log_int_visu_file, log_intensity, cmap='jet')
np.save(log_int_file, log_intensity)