diff options
author | jakobsj <jakobsj@users.noreply.github.com> | 2018-05-10 15:42:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-10 15:42:14 +0100 |
commit | 7d48b476a2000c148d5b5280f7196d349087eb90 (patch) | |
tree | 7cedd5a8965d77472d967205a441e97342a47ac0 | |
parent | 3dec0c1e6773be8a32810a84415dfccc4cab7bfc (diff) | |
parent | 4f0fc6601200aadab9502b602000dc6b74539c6b (diff) | |
download | framework-plugins-7d48b476a2000c148d5b5280f7196d349087eb90.tar.gz framework-plugins-7d48b476a2000c148d5b5280f7196d349087eb90.tar.bz2 framework-plugins-7d48b476a2000c148d5b5280f7196d349087eb90.tar.xz framework-plugins-7d48b476a2000c148d5b5280f7196d349087eb90.zip |
Merge pull request #9 from vais-ral/RGLTK_TV_denoising_demo
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') |