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 33 34 35 36 37 38 39 40 41 42
|
import matplotlib.pyplot as plt
import matplotlib.image as mpimg
from agilent_format import agilentImageIFG
PLOTS = False
ATTRS = True
filename = ["var/2018-01-02 Small Test File/4_noimage_agg256.bsp"]
# filename += ["var/2018-01-02 Small Test File/background_agg256.bsp"]
for f in filename:
aifg = agilentImageIFG(f)
print(aifg.data.shape)
if PLOTS:
img = aifg.data.sum(axis=2)
print(img.shape)
imgplot = plt.imshow(img, origin='lower')
plt.show()
plt.plot(range(0, aifg.data.shape[2]), aifg.data[0,0,:])
plt.plot(range(0, aifg.data.shape[2]), aifg.data[2,2,:])
plt.plot(range(0, aifg.data.shape[2]), aifg.data[0,3,:])
plt.show()
assert aifg.data.shape == (8, 8, 311)
assert aifg.info['Npts'] == 311
assert aifg.info['StartPt'] == -68
assert aifg.info['PtSep'] == float(0.00012659827227975054)
assert aifg.info['Effective Laser Wavenumber'] == 15798.0039
assert aifg.info['Resolution'] == 32
assert aifg.info['Symmetry'] == "ASYM"
assert aifg.info['Under Sampling Ratio'] == 4
assert aifg.info['PixelAggregationSize'] == 16
if ATTRS:
for k,v in aifg.info.items():
if k == "Rapid Stingray":
for k, v, in v.items():
print(k, "|", v, "|", type(v))
else:
print(k, "|", v, "|", type(v))
|