From f9f2dfcc21f2e1126ed3b8da282bff9032ab469f Mon Sep 17 00:00:00 2001 From: Willem Jan Palenstijn Date: Fri, 12 Dec 2014 12:01:59 +0100 Subject: Update copyright headers --- samples/s001_sinogram_par2d.m | 16 ++++++++-------- samples/s002_data2d.m | 16 ++++++++-------- samples/s003_gpu_reconstruction.m | 16 ++++++++-------- samples/s004_cpu_reconstruction.m | 16 ++++++++-------- samples/s005_3d_geometry.m | 16 ++++++++-------- samples/s006_3d_data.m | 16 ++++++++-------- samples/s007_3d_reconstruction.m | 16 ++++++++-------- samples/s008_gpu_selection.m | 16 ++++++++-------- samples/s009_projection_matrix.m | 16 ++++++++-------- samples/s010_supersampling.m | 16 ++++++++-------- samples/s011_object_info.m | 16 ++++++++-------- samples/s012_masks.m | 16 ++++++++-------- samples/s013_constraints.m | 16 ++++++++-------- samples/s014_FBP.m | 16 ++++++++-------- samples/s015_fp_bp.m | 16 ++++++++-------- samples/s016_plots.m | 16 ++++++++-------- 16 files changed, 128 insertions(+), 128 deletions(-) (limited to 'samples') diff --git a/samples/s001_sinogram_par2d.m b/samples/s001_sinogram_par2d.m index 9f50c14..e6d8da1 100644 --- a/samples/s001_sinogram_par2d.m +++ b/samples/s001_sinogram_par2d.m @@ -1,12 +1,12 @@ -%------------------------------------------------------------------------ -% This file is part of the -% All Scale Tomographic Reconstruction Antwerp Toolbox ("ASTRA-Toolbox") -% -% Copyright: iMinds-Vision Lab, University of Antwerp +% ----------------------------------------------------------------------- +% This file is part of the ASTRA Toolbox +% +% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp +% 2014, CWI, Amsterdam % License: Open Source under GPLv3 -% Contact: mailto:astra@ua.ac.be -% Website: http://astra.ua.ac.be -%------------------------------------------------------------------------ +% Contact: astra@uantwerpen.be +% Website: http://sf.net/projects/astra-toolbox +% ----------------------------------------------------------------------- % Create a basic 256x256 square volume geometry vol_geom = astra_create_vol_geom(256, 256); diff --git a/samples/s002_data2d.m b/samples/s002_data2d.m index 37b5549..4259794 100644 --- a/samples/s002_data2d.m +++ b/samples/s002_data2d.m @@ -1,12 +1,12 @@ -%------------------------------------------------------------------------ -% This file is part of the -% All Scale Tomographic Reconstruction Antwerp Toolbox ("ASTRA-Toolbox") -% -% Copyright: iMinds-Vision Lab, University of Antwerp +% ----------------------------------------------------------------------- +% This file is part of the ASTRA Toolbox +% +% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp +% 2014, CWI, Amsterdam % License: Open Source under GPLv3 -% Contact: mailto:astra@ua.ac.be -% Website: http://astra.ua.ac.be -%------------------------------------------------------------------------ +% Contact: astra@uantwerpen.be +% Website: http://sf.net/projects/astra-toolbox +% ----------------------------------------------------------------------- vol_geom = astra_create_vol_geom(256, 256); diff --git a/samples/s003_gpu_reconstruction.m b/samples/s003_gpu_reconstruction.m index 749f91a..41bb9b9 100644 --- a/samples/s003_gpu_reconstruction.m +++ b/samples/s003_gpu_reconstruction.m @@ -1,12 +1,12 @@ -%------------------------------------------------------------------------ -% This file is part of the -% All Scale Tomographic Reconstruction Antwerp Toolbox ("ASTRA-Toolbox") -% -% Copyright: iMinds-Vision Lab, University of Antwerp +% ----------------------------------------------------------------------- +% This file is part of the ASTRA Toolbox +% +% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp +% 2014, CWI, Amsterdam % License: Open Source under GPLv3 -% Contact: mailto:astra@ua.ac.be -% Website: http://astra.ua.ac.be -%------------------------------------------------------------------------ +% Contact: astra@uantwerpen.be +% Website: http://sf.net/projects/astra-toolbox +% ----------------------------------------------------------------------- vol_geom = astra_create_vol_geom(256, 256); proj_geom = astra_create_proj_geom('parallel', 1.0, 384, linspace2(0,pi,180)); diff --git a/samples/s004_cpu_reconstruction.m b/samples/s004_cpu_reconstruction.m index 69414e2..24d7ad2 100644 --- a/samples/s004_cpu_reconstruction.m +++ b/samples/s004_cpu_reconstruction.m @@ -1,12 +1,12 @@ -%------------------------------------------------------------------------ -% This file is part of the -% All Scale Tomographic Reconstruction Antwerp Toolbox ("ASTRA-Toolbox") -% -% Copyright: iMinds-Vision Lab, University of Antwerp +% ----------------------------------------------------------------------- +% This file is part of the ASTRA Toolbox +% +% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp +% 2014, CWI, Amsterdam % License: Open Source under GPLv3 -% Contact: mailto:astra@ua.ac.be -% Website: http://astra.ua.ac.be -%------------------------------------------------------------------------ +% Contact: astra@uantwerpen.be +% Website: http://sf.net/projects/astra-toolbox +% ----------------------------------------------------------------------- vol_geom = astra_create_vol_geom(256, 256); proj_geom = astra_create_proj_geom('parallel', 1.0, 384, linspace2(0,pi,180)); diff --git a/samples/s005_3d_geometry.m b/samples/s005_3d_geometry.m index fa959c9..63cb683 100644 --- a/samples/s005_3d_geometry.m +++ b/samples/s005_3d_geometry.m @@ -1,12 +1,12 @@ -%------------------------------------------------------------------------ -% This file is part of the -% All Scale Tomographic Reconstruction Antwerp Toolbox ("ASTRA-Toolbox") -% -% Copyright: iMinds-Vision Lab, University of Antwerp +% ----------------------------------------------------------------------- +% This file is part of the ASTRA Toolbox +% +% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp +% 2014, CWI, Amsterdam % License: Open Source under GPLv3 -% Contact: mailto:astra@ua.ac.be -% Website: http://astra.ua.ac.be -%------------------------------------------------------------------------ +% Contact: astra@uantwerpen.be +% Website: http://sf.net/projects/astra-toolbox +% ----------------------------------------------------------------------- vol_geom = astra_create_vol_geom(64, 64, 64); diff --git a/samples/s006_3d_data.m b/samples/s006_3d_data.m index b836198..7b74460 100644 --- a/samples/s006_3d_data.m +++ b/samples/s006_3d_data.m @@ -1,12 +1,12 @@ -%------------------------------------------------------------------------ -% This file is part of the -% All Scale Tomographic Reconstruction Antwerp Toolbox ("ASTRA-Toolbox") -% -% Copyright: iMinds-Vision Lab, University of Antwerp +% ----------------------------------------------------------------------- +% This file is part of the ASTRA Toolbox +% +% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp +% 2014, CWI, Amsterdam % License: Open Source under GPLv3 -% Contact: mailto:astra@ua.ac.be -% Website: http://astra.ua.ac.be -%------------------------------------------------------------------------ +% Contact: astra@uantwerpen.be +% Website: http://sf.net/projects/astra-toolbox +% ----------------------------------------------------------------------- % Create a 3D volume geometry. % Parameter order: rows, colums, slices (y, x, z) diff --git a/samples/s007_3d_reconstruction.m b/samples/s007_3d_reconstruction.m index 1bc9da3..3ca8da8 100644 --- a/samples/s007_3d_reconstruction.m +++ b/samples/s007_3d_reconstruction.m @@ -1,12 +1,12 @@ -%------------------------------------------------------------------------ -% This file is part of the -% All Scale Tomographic Reconstruction Antwerp Toolbox ("ASTRA-Toolbox") -% -% Copyright: iMinds-Vision Lab, University of Antwerp +% ----------------------------------------------------------------------- +% This file is part of the ASTRA Toolbox +% +% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp +% 2014, CWI, Amsterdam % License: Open Source under GPLv3 -% Contact: mailto:astra@ua.ac.be -% Website: http://astra.ua.ac.be -%------------------------------------------------------------------------ +% Contact: astra@uantwerpen.be +% Website: http://sf.net/projects/astra-toolbox +% ----------------------------------------------------------------------- vol_geom = astra_create_vol_geom(128, 128, 128); diff --git a/samples/s008_gpu_selection.m b/samples/s008_gpu_selection.m index 252ba0c..4ea4ba6 100644 --- a/samples/s008_gpu_selection.m +++ b/samples/s008_gpu_selection.m @@ -1,12 +1,12 @@ -%------------------------------------------------------------------------ -% This file is part of the -% All Scale Tomographic Reconstruction Antwerp Toolbox ("ASTRA-Toolbox") -% -% Copyright: iMinds-Vision Lab, University of Antwerp +% ----------------------------------------------------------------------- +% This file is part of the ASTRA Toolbox +% +% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp +% 2014, CWI, Amsterdam % License: Open Source under GPLv3 -% Contact: mailto:astra@ua.ac.be -% Website: http://astra.ua.ac.be -%------------------------------------------------------------------------ +% Contact: astra@uantwerpen.be +% Website: http://sf.net/projects/astra-toolbox +% ----------------------------------------------------------------------- vol_geom = astra_create_vol_geom(256, 256); proj_geom = astra_create_proj_geom('parallel', 1.0, 384, linspace2(0,pi,180)); diff --git a/samples/s009_projection_matrix.m b/samples/s009_projection_matrix.m index c0df79e..a1b0036 100644 --- a/samples/s009_projection_matrix.m +++ b/samples/s009_projection_matrix.m @@ -1,12 +1,12 @@ -%------------------------------------------------------------------------ -% This file is part of the -% All Scale Tomographic Reconstruction Antwerp Toolbox ("ASTRA-Toolbox") -% -% Copyright: iMinds-Vision Lab, University of Antwerp +% ----------------------------------------------------------------------- +% This file is part of the ASTRA Toolbox +% +% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp +% 2014, CWI, Amsterdam % License: Open Source under GPLv3 -% Contact: mailto:astra@ua.ac.be -% Website: http://astra.ua.ac.be -%------------------------------------------------------------------------ +% Contact: astra@uantwerpen.be +% Website: http://sf.net/projects/astra-toolbox +% ----------------------------------------------------------------------- vol_geom = astra_create_vol_geom(256, 256); proj_geom = astra_create_proj_geom('parallel', 1.0, 384, linspace2(0,pi,180)); diff --git a/samples/s010_supersampling.m b/samples/s010_supersampling.m index 4436625..0275bd6 100644 --- a/samples/s010_supersampling.m +++ b/samples/s010_supersampling.m @@ -1,12 +1,12 @@ -%------------------------------------------------------------------------ -% This file is part of the -% All Scale Tomographic Reconstruction Antwerp Toolbox ("ASTRA-Toolbox") -% -% Copyright: iMinds-Vision Lab, University of Antwerp +% ----------------------------------------------------------------------- +% This file is part of the ASTRA Toolbox +% +% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp +% 2014, CWI, Amsterdam % License: Open Source under GPLv3 -% Contact: mailto:astra@ua.ac.be -% Website: http://astra.ua.ac.be -%------------------------------------------------------------------------ +% Contact: astra@uantwerpen.be +% Website: http://sf.net/projects/astra-toolbox +% ----------------------------------------------------------------------- vol_geom = astra_create_vol_geom(256, 256); proj_geom = astra_create_proj_geom('parallel', 3.0, 128, linspace2(0,pi,180)); diff --git a/samples/s011_object_info.m b/samples/s011_object_info.m index a3725f3..e68e8ba 100644 --- a/samples/s011_object_info.m +++ b/samples/s011_object_info.m @@ -1,12 +1,12 @@ -%------------------------------------------------------------------------ -% This file is part of the -% All Scale Tomographic Reconstruction Antwerp Toolbox ("ASTRA-Toolbox") -% -% Copyright: iMinds-Vision Lab, University of Antwerp +% ----------------------------------------------------------------------- +% This file is part of the ASTRA Toolbox +% +% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp +% 2014, CWI, Amsterdam % License: Open Source under GPLv3 -% Contact: mailto:astra@ua.ac.be -% Website: http://astra.ua.ac.be -%------------------------------------------------------------------------ +% Contact: astra@uantwerpen.be +% Website: http://sf.net/projects/astra-toolbox +% ----------------------------------------------------------------------- % Create two volume geometries vol_geom1 = astra_create_vol_geom(256, 256); diff --git a/samples/s012_masks.m b/samples/s012_masks.m index b7b8df6..212743a 100644 --- a/samples/s012_masks.m +++ b/samples/s012_masks.m @@ -1,12 +1,12 @@ -%------------------------------------------------------------------------ -% This file is part of the -% All Scale Tomographic Reconstruction Antwerp Toolbox ("ASTRA-Toolbox") -% -% Copyright: iMinds-Vision Lab, University of Antwerp +% ----------------------------------------------------------------------- +% This file is part of the ASTRA Toolbox +% +% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp +% 2014, CWI, Amsterdam % License: Open Source under GPLv3 -% Contact: mailto:astra@ua.ac.be -% Website: http://astra.ua.ac.be -%------------------------------------------------------------------------ +% Contact: astra@uantwerpen.be +% Website: http://sf.net/projects/astra-toolbox +% ----------------------------------------------------------------------- % In this example we will create a reconstruction in a circular region, diff --git a/samples/s013_constraints.m b/samples/s013_constraints.m index 9cb9612..988cf97 100644 --- a/samples/s013_constraints.m +++ b/samples/s013_constraints.m @@ -1,12 +1,12 @@ -%------------------------------------------------------------------------ -% This file is part of the -% All Scale Tomographic Reconstruction Antwerp Toolbox ("ASTRA-Toolbox") -% -% Copyright: iMinds-Vision Lab, University of Antwerp +% ----------------------------------------------------------------------- +% This file is part of the ASTRA Toolbox +% +% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp +% 2014, CWI, Amsterdam % License: Open Source under GPLv3 -% Contact: mailto:astra@ua.ac.be -% Website: http://astra.ua.ac.be -%------------------------------------------------------------------------ +% Contact: astra@uantwerpen.be +% Website: http://sf.net/projects/astra-toolbox +% ----------------------------------------------------------------------- % In this example we will create a reconstruction constrained to % greyvalues between 0 and 1 diff --git a/samples/s014_FBP.m b/samples/s014_FBP.m index 7cce28f..1e1a2cb 100644 --- a/samples/s014_FBP.m +++ b/samples/s014_FBP.m @@ -1,12 +1,12 @@ -%------------------------------------------------------------------------ -% This file is part of the -% All Scale Tomographic Reconstruction Antwerp Toolbox ("ASTRA-Toolbox") -% -% Copyright: iMinds-Vision Lab, University of Antwerp +% ----------------------------------------------------------------------- +% This file is part of the ASTRA Toolbox +% +% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp +% 2014, CWI, Amsterdam % License: Open Source under GPLv3 -% Contact: mailto:astra@ua.ac.be -% Website: http://astra.ua.ac.be -%------------------------------------------------------------------------ +% Contact: astra@uantwerpen.be +% Website: http://sf.net/projects/astra-toolbox +% ----------------------------------------------------------------------- vol_geom = astra_create_vol_geom(256, 256); proj_geom = astra_create_proj_geom('parallel', 1.0, 384, linspace2(0,pi,180)); diff --git a/samples/s015_fp_bp.m b/samples/s015_fp_bp.m index 815f478..131b7e0 100644 --- a/samples/s015_fp_bp.m +++ b/samples/s015_fp_bp.m @@ -1,12 +1,12 @@ -%------------------------------------------------------------------------ -% This file is part of the -% All Scale Tomographic Reconstruction Antwerp Toolbox ("ASTRA-Toolbox") -% -% Copyright: iMinds-Vision Lab, University of Antwerp +% ----------------------------------------------------------------------- +% This file is part of the ASTRA Toolbox +% +% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp +% 2014, CWI, Amsterdam % License: Open Source under GPLv3 -% Contact: mailto:astra@ua.ac.be -% Website: http://astra.ua.ac.be -%------------------------------------------------------------------------ +% Contact: astra@uantwerpen.be +% Website: http://sf.net/projects/astra-toolbox +% ----------------------------------------------------------------------- % This example demonstrates using the FP and BP primitives with Matlab's lsqr diff --git a/samples/s016_plots.m b/samples/s016_plots.m index 1eeca58..0baa82a 100644 --- a/samples/s016_plots.m +++ b/samples/s016_plots.m @@ -1,12 +1,12 @@ -%------------------------------------------------------------------------ -% This file is part of the -% All Scale Tomographic Reconstruction Antwerp Toolbox ("ASTRA-Toolbox") -% -% Copyright: iMinds-Vision Lab, University of Antwerp +% ----------------------------------------------------------------------- +% This file is part of the ASTRA Toolbox +% +% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp +% 2014, CWI, Amsterdam % License: Open Source under GPLv3 -% Contact: mailto:astra@ua.ac.be -% Website: http://astra.ua.ac.be -%------------------------------------------------------------------------ +% Contact: astra@uantwerpen.be +% Website: http://sf.net/projects/astra-toolbox +% ----------------------------------------------------------------------- vol_geom = astra_create_vol_geom(256, 256); proj_geom = astra_create_proj_geom('parallel', 1.0, 384, linspace2(0,pi,180)); -- cgit v1.2.3