-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathrevolve2D.m
89 lines (80 loc) · 3.03 KB
/
revolve2D.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
function [mat3D] = revolve2D(mat2D,theta)
%REVOLVE2D Form 3D matrix from revolution of 2D matrix.
%
% DESCRIPTION:
% revolve2D revolves the values of a 2D matrix about the x axis (or
% matrix rows) to form a 3D matrix. A single point is taken as the
% x-axis origin, thus for an input matrix of size m by n, the output
% matrix will be m by (2n-1) by (2n-1). Values outside the
% interpolation range are set to zero.
%
% USAGE:
% mat3D = revolve2D(mat2D)
%
% INPUTS:
% mat2D - 2D input matrix
%
% OUTPUTS:
% mat3D - 3D output matrix
%
% ABOUT:
% author - Bradley Treeby
% date - 19th April 2011
% last update - 7th June 2017
%
% This function is part of the k-Wave Toolbox (http://www.k-wave.org)
% Copyright (C) 2011-2017 Bradley Treeby
% This file is part of k-Wave. k-Wave is free software: you can
% redistribute it and/or modify it under the terms of the GNU Lesser
% General Public License as published by the Free Software Foundation,
% either version 3 of the License, or (at your option) any later version.
%
% k-Wave is distributed in the hope that it will be useful, but WITHOUT ANY
% WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
% FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
% more details.
%
% You should have received a copy of the GNU Lesser General Public License
% along with k-Wave. If not, see <http://www.gnu.org/licenses/>.
% start timer
tic;
% update command line status
disp('Revolving 2D matrix to form a 3D matrix...');
% get size of matrix
[m, n] = size(mat2D);
% create the reference axis for the 2D image
r_axis_one_sided = 0:(n - 1);
r_axis_two_sided = -(n - 1):(n - 1);
% compute the distance from every pixel in the z-y cross-section of the 3D
% matrix to the rotation axis
r1 = zeros(2*n-1,2*n-1); r = zeros(2*n-1,2*n-1);
[z, y] = meshgrid(r_axis_two_sided, r_axis_two_sided);
r = sqrt(y.^2 + z.^2);
if theta == 360
r1 = r;
else
if theta <= 180
for i = 0:round(0.5*size(r,2))-1
r1(round(0.5*size(r,1))-i,1:(round(0.5*size(r,2))+...
min(round(0.5*size(r,2))-1,round((i*tand(theta-90))))))=...
r(round(0.5*size(r,1))-i,1:(round(0.5*size(r,2))+...
min(round(0.5*size(r,2))-1,round((i*tand(theta-90))))));
end
elseif theta > 180
r1(1:round(0.5*size(r,1)),:) = r(1:round(0.5*size(r,1)),:);
for i = 1:round(0.5*size(r,2))-1
r1(round(0.5*size(r,1))+i,(round(0.5*size(r,2))-...
min(round(0.5*size(r,2))-1,round((i*tand(theta-270))))):end)...
= r(round(0.5*size(r,1))+i,(round(0.5*size(r,2))-...
min(round(0.5*size(r,2))-1,round((i*tand(theta-270))))):end);
end
end
end
% create empty image matrix
mat3D = zeros(m, 2*n-1, 2*n-1);
% loop through each cross section and create 3D matrix
for x_index = 1:m
mat3D(x_index, :, :) = interp1(r_axis_one_sided, mat2D(x_index, :), r1, [], 0);
end
% update command line status
disp([' completed in ' toc 's']);