/tomo/dfi

To get this branch, use:
bzr branch http://darksoft.org/webbzr/tomo/dfi

« back to all changes in this revision

Viewing changes to test_bubbles.m

  • Committer: Suren A. Chilingaryan
  • Date: 2013-03-22 00:21:41 UTC
  • Revision ID: csa@dside.dyndns.org-20130322002141-40r2i2pfmza3lpfc
Initial release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
function [res]=test()
 
2
    sino=imread('/pdv/data/tomo/std/out_phase_sino_tiff/reco.vol_sino_1025.edf.tiff');
 
3
 
 
4
    f=pack_sinogram(sino, 928, 2);
 
5
    g=simple_interpolate(f, 0.09, 2, 1);
 
6
    slice=unpack_slice(g, 2048);
 
7
    
 
8
    res=slice;
 
9
    
 
10
    imagesc(slice);
 
11
    colormap(gray);
 
12
end