summaryrefslogtreecommitdiffstats
path: root/samples
diff options
context:
space:
mode:
authorWillem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl>2014-12-12 12:01:59 +0100
committerWillem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl>2015-01-19 11:23:19 +0100
commitf9f2dfcc21f2e1126ed3b8da282bff9032ab469f (patch)
tree805f79101d709028d20c2fccd37d0fa9deb00364 /samples
parentaa7491e356dfa04057fb94fc349c60300e60bd7b (diff)
downloadastra-f9f2dfcc21f2e1126ed3b8da282bff9032ab469f.tar.gz
astra-f9f2dfcc21f2e1126ed3b8da282bff9032ab469f.tar.bz2
astra-f9f2dfcc21f2e1126ed3b8da282bff9032ab469f.tar.xz
astra-f9f2dfcc21f2e1126ed3b8da282bff9032ab469f.zip
Update copyright headers
Diffstat (limited to 'samples')
-rw-r--r--samples/s001_sinogram_par2d.m16
-rw-r--r--samples/s002_data2d.m16
-rw-r--r--samples/s003_gpu_reconstruction.m16
-rw-r--r--samples/s004_cpu_reconstruction.m16
-rw-r--r--samples/s005_3d_geometry.m16
-rw-r--r--samples/s006_3d_data.m16
-rw-r--r--samples/s007_3d_reconstruction.m16
-rw-r--r--samples/s008_gpu_selection.m16
-rw-r--r--samples/s009_projection_matrix.m16
-rw-r--r--samples/s010_supersampling.m16
-rw-r--r--samples/s011_object_info.m16
-rw-r--r--samples/s012_masks.m16
-rw-r--r--samples/s013_constraints.m16
-rw-r--r--samples/s014_FBP.m16
-rw-r--r--samples/s015_fp_bp.m16
-rw-r--r--samples/s016_plots.m16
16 files changed, 128 insertions, 128 deletions
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));