diff options
Diffstat (limited to 'tvqc_quantization_example.m')
-rw-r--r-- | tvqc_quantization_example.m | 6 |
1 files changed, 6 insertions, 0 deletions
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'); + |