diff options
Diffstat (limited to 'tveq_phantom_example.m')
-rw-r--r-- | tveq_phantom_example.m | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tveq_phantom_example.m b/tveq_phantom_example.m index 0439a00..ac98f65 100644 --- a/tveq_phantom_example.m +++ b/tveq_phantom_example.m @@ -43,3 +43,9 @@ disp(sprintf('Original TV = %8.3f', tvI)); xp = tveq_logbarrier(xbp, A, At, y, 1e-1, 2, 1e-8, 600); Xtv = reshape(xp, n, n); toc + +figure(1); imagesc(X); colormap(gray); colorbar; +title('Original image'); +figure(2); imagesc(Xtv); colormap(gray); colorbar; +title('Reconstructed image'); + |