diff options
author | Jakob Jorgensen, WS at HMXIF <jakob.jorgensen@manchester.ac.uk> | 2018-05-12 21:07:29 +0100 |
---|---|---|
committer | Jakob Jorgensen, WS at HMXIF <jakob.jorgensen@manchester.ac.uk> | 2018-05-12 21:07:29 +0100 |
commit | f5aa0dd2976df492374b35d9f6bfcc0933803ebb (patch) | |
tree | 0acf25c68d716778d99cbbf7e61693d3514e106d | |
parent | d1875172687fc854df35fa9bfc6ac07a148d7f18 (diff) | |
download | framework-plugins-f5aa0dd2976df492374b35d9f6bfcc0933803ebb.tar.gz framework-plugins-f5aa0dd2976df492374b35d9f6bfcc0933803ebb.tar.bz2 framework-plugins-f5aa0dd2976df492374b35d9f6bfcc0933803ebb.tar.xz framework-plugins-f5aa0dd2976df492374b35d9f6bfcc0933803ebb.zip |
Add SB in final display of all.
-rw-r--r-- | Wrappers/Python/wip/demo_compare_RGLTK_TV_denoising.py | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/Wrappers/Python/wip/demo_compare_RGLTK_TV_denoising.py b/Wrappers/Python/wip/demo_compare_RGLTK_TV_denoising.py index 2bf1286..fd992de 100644 --- a/Wrappers/Python/wip/demo_compare_RGLTK_TV_denoising.py +++ b/Wrappers/Python/wip/demo_compare_RGLTK_TV_denoising.py @@ -149,7 +149,7 @@ print(EnergytotalSB) # Compare all reconstruction clims = (-0.2,1.2) dlims = (-0.2,0.2) -cols = 3 +cols = 4 rows = 2 current = 1 @@ -173,18 +173,30 @@ plt.axis('off') current = current + 1 a=fig.add_subplot(rows,cols,current) +a.set_title('SB') +imgplot = plt.imshow(xtv_sb.as_array(),vmin=clims[0],vmax=clims[1]) +plt.axis('off') + +current = current + 1 +a=fig.add_subplot(rows,cols,current) a.set_title('FBPD - CVX') imgplot = plt.imshow(x_fbpdtv_denoise.as_array()-xtv_denoise.value,vmin=dlims[0],vmax=dlims[1]) plt.axis('off') current = current + 1 a=fig.add_subplot(rows,cols,current) -a.set_title('ROF - TV') +a.set_title('ROF - CVX') imgplot = plt.imshow(xtv_rof.as_array()-xtv_denoise.value,vmin=dlims[0],vmax=dlims[1]) plt.axis('off') current = current + 1 a=fig.add_subplot(rows,cols,current) -a.set_title('FGP - TV') +a.set_title('FGP - CVX') imgplot = plt.imshow(xtv_fgp.as_array()-xtv_denoise.value,vmin=dlims[0],vmax=dlims[1]) plt.axis('off') + +current = current + 1 +a=fig.add_subplot(rows,cols,current) +a.set_title('SB - CVX') +imgplot = plt.imshow(xtv_sb.as_array()-xtv_denoise.value,vmin=dlims[0],vmax=dlims[1]) +plt.axis('off') |