-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpostprocess.m
More file actions
41 lines (35 loc) · 1.59 KB
/
postprocess.m
File metadata and controls
41 lines (35 loc) · 1.59 KB
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
classdef postprocess < process
%POSTPROCESS postprocess part of the processing pipeline. Takes a
% uff.beamformed_data structure and returns another uff.beamformed_data
%
% See also PROCESS, CHANNEL_DATA, BEAMFORMED_DATA
% authors: Alfonso Rodriguez-Molares (alfonso.r.molares@ntnu.no)
% Ole Marius Hoel Rindal <olemarius@olemarius.net>
%
% $Date: 2017/09/10$
%% public properties
properties (Access = public)
input % UFF.BEAMFORMED_DATA class
output % UFF.BEAMFORMED_DATA class
end
%% Additional properties
properties
receive_apodization % APODIZATION class
transmit_apodization % APODIZATION class
end
%% set methods
methods
function h=set.input(h,in_beamformed_data)
assert(isa(in_beamformed_data,'uff.beamformed_data'), 'The input is not a UFF.BEAMFORMED_DATA class. Check HELP UFF.BEAMFORMED_DATA.');
h.input=in_beamformed_data;
end
function h=set.receive_apodization(h,in_apodization)
assert(isa(in_apodization,'uff.apodization'), 'The input is not a UFF.APODIZATION class. Check HELP UFF.APODIZATION.');
h.receive_apodization=in_apodization;
end
function h=set.transmit_apodization(h,in_apodization)
assert(isa(in_apodization,'uff.apodization'), 'The input is not a UFF.APODIZATION class. Check HELP UFF.APODIZATION.');
h.transmit_apodization=in_apodization;
end
end
end