diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2021-01-29 16:58:01 -0500 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2021-01-29 17:10:57 -0500 |
commit | cfce29dac7d33537697cc4d722a861ba3872a1a2 (patch) | |
tree | 381afd9d01c86caefe24873f5b356c4f2d7d6150 | |
parent | 08d3232bdcbada58ffe9d20c6924b7e55aeeafda (diff) | |
download | l1magic-1.11.01.tar.gz l1magic-1.11.01.zip |
-rw-r--r-- | tveq_phantom_example.m | 6 | ||||
-rw-r--r-- | tvqc_quantization_example.m | 6 |
2 files changed, 12 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'); + diff --git a/tvqc_quantization_example.m b/tvqc_quantization_example.m index c9204a9..8ae5f94 100644 --- a/tvqc_quantization_example.m +++ b/tvqc_quantization_example.m @@ -65,3 +65,9 @@ time0 = clock; xp = tvqc_logbarrier(x0, A, At, b, epsilon, 1e-1, 5); Ip = reshape(xp, n, n); disp(sprintf('Total elapsed time = %f secs\n', etime(clock,time0))); + +figure(1); imagesc(I); colormap(gray); colorbar; +title('Original image'); +figure(2); imagesc(Ip); colormap(gray); colorbar; +title('Reconstructed image'); + |