Fix intensity calibration

This commit is contained in:
linarphy 2023-06-26 14:50:11 +02:00
parent b328f30618
commit df4ecdcaf2
No known key found for this signature in database
GPG key ID: 3D4AAAC3AD16E79C

View file

@ -685,7 +685,7 @@ if intensity != None:
true_intensity_value = ( intensity_stairs.shape[0] - np.polyval( index_polyval , intensity_value ) ) * step
final_intensity[index] = true_intensity_value
final_intensity[index] = np.exp( true_intensity_value )
if verbose:
print( 'intensity calibration finished' )