Skip to content

Commit

Permalink
Fix issue RL CPU was returning uint8 only
Browse files Browse the repository at this point in the history
  • Loading branch information
perdigao1 committed Jan 17, 2022
1 parent 338c17c commit 1e8c28a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions RedLionfishDeconv/RLDeconv3DScipy.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,5 +150,5 @@ def doRLDeconvolution_DL2_4(data_np , psf_np ,*, niter=10, callbkTickFunc=None):
if not callbkTickFunc is None:
callbkTickFunc()

data_deconv_uint8 = convertToUint8AndFullRange(xn1)
return data_deconv_uint8
dataret = xn1
return dataret
3 changes: 0 additions & 3 deletions test/test_RL_deconv_callbk.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
This example shows how to do RL deconvolution using either CPU or GPU,
using callback functionality that gives an update of progress of calculation.
'''
#Testing in local computer using VScode, without having installed RedLionfish package
#import sys
#sys.path.append('..')

#from RedLionfishDeconv import *
import RedLionfishDeconv as rl
Expand Down

0 comments on commit 1e8c28a

Please sign in to comment.