-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathExample3.m
29 lines (23 loc) · 844 Bytes
/
Example3.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
%%% Example 3: Hand-drawn mask
clc; clear; close all;
% Load Data
[xMm, tMsec, displ] = MakeSimData(3);
data = MakeDataStruct(xMm, tMsec, displ);
% Draw mask
mask = MaskManual(data, titletext='Draw a mask encircling one of the two waves');
% Apply Radon Transform
theta = CalcTheta(data.dxdt);
radout = NormRadon(data.data, theta, [], mask, 0.5);
% a higher epsilon is needed since hand-drawn
% masks tend to wrap closely around the wave
% Find Peak
peak = FindRadonPeaks(radout);
% Calculate Trajectory
out = CalcTrajectory(data, peak);
res = CalcResolution(data, radout, peak);
fprintf('Calc Speed: %.2f m/s\n', out.speed)
fprintf('--Resolution_th: %.2f m/s\n', res.res_th)
fprintf('--Resolution_rp: %.2f m/s\n', res.res_rp)
% Plot
data.mask = mask; % this makes it plot the mask overlay
PlotRadon(2, data, radout, peak, out)