Fix intensity calibration
This commit is contained in:
parent
b328f30618
commit
df4ecdcaf2
1 changed files with 1 additions and 1 deletions
|
@ -685,7 +685,7 @@ if intensity != None:
|
||||||
|
|
||||||
true_intensity_value = ( intensity_stairs.shape[0] - np.polyval( index_polyval , intensity_value ) ) * step
|
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:
|
if verbose:
|
||||||
print( 'intensity calibration finished' )
|
print( 'intensity calibration finished' )
|
||||||
|
|
Loading…
Reference in a new issue