Hi there,
In the CalibrateOD() function within app.py, I see there are a number of hard-coded values depending on the M value and device (see below). How were these values determined? Just wondering how we would go about computing these calibration factor values ourselves.
For LEDF:
if (M==’M0′):
CF=1299.0
elif (M==’M1′):
CF=1206.0
elif (M==’M2′):
CF=1660.0
elif (M==’M3′):
CF=1494.0
For LEDA:
if (M==’M0′):
CF=422
elif (M==’M1′):
CF=379
elif (M==’M2′):
CF=574
elif (M==’M3′):
CF=522
Thanks!