diff options
author | Jakob Jorgensen, WS at HMXIF <jakob.jorgensen@manchester.ac.uk> | 2018-05-10 15:41:34 +0100 |
---|---|---|
committer | Jakob Jorgensen, WS at HMXIF <jakob.jorgensen@manchester.ac.uk> | 2018-05-10 15:41:34 +0100 |
commit | 4f0fc6601200aadab9502b602000dc6b74539c6b (patch) | |
tree | 7cedd5a8965d77472d967205a441e97342a47ac0 | |
parent | d4c47f20b916f162d6eadc45739c96bba9b0e677 (diff) | |
download | framework-plugins-4f0fc6601200aadab9502b602000dc6b74539c6b.tar.gz framework-plugins-4f0fc6601200aadab9502b602000dc6b74539c6b.tar.bz2 framework-plugins-4f0fc6601200aadab9502b602000dc6b74539c6b.tar.xz framework-plugins-4f0fc6601200aadab9502b602000dc6b74539c6b.zip |
Really fix subplot titles
-rw-r--r-- | Wrappers/Python/wip/demo_compare_RGLTK_TV_denoising.py | 6 |
1 files changed, 3 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 b8ccea9..559679e 100644 --- a/Wrappers/Python/wip/demo_compare_RGLTK_TV_denoising.py +++ b/Wrappers/Python/wip/demo_compare_RGLTK_TV_denoising.py @@ -153,18 +153,18 @@ plt.axis('off') current = current + 1 a=fig.add_subplot(rows,cols,current) -a.set_title('FISTA LS+1') +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('FBPD LS+1') +a.set_title('ROF - TV') 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('FBPD TV') +a.set_title('FGP - TV') imgplot = plt.imshow(xtv_fgp.as_array()-xtv_denoise.value,vmin=dlims[0],vmax=dlims[1]) plt.axis('off') |