You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can we also save tif file for obj and prb data? For example a stacked tif with amplitude and phase separated. This will make viewing the results easier. Currently I have to start python, write a few line of code to read the output. ASCII is also ok.
Currently, two folders are created for saving the reconstruction results: recon_pic and recon_data. We can consider to create a new folder for tiff files, such recon_tiff. Essentially, we can save all the numpy arrays in recon_data folder into tif.
The command I’m using for tiff saving is:
$from skimage import io
$io.imsave(‘file_name.tif’, data_array.astype(np.float32))
For complex array, the amplitude and phase parts need to be saved separately.
From @hanfeiyan:
This is pending @xiaojinghuang's response.
The text was updated successfully, but these errors were encountered: