BVP=csvread('HR_waveform.csv',1,0);
BR=csvread('RR_waveform.csv',1,0);
t=1/fs_br:1/fs_br:length(BR)/fs_br;
plot(t,BR(:,2),t,BR(:,3))
title('Breathing waveforms')
ylabel('Normalized amplitude')
legend('Thermal camera','Breathing belt')
annonation_save('b)',"Fig11.4b.jpg", 1);
t=1/fs_hr:1/fs_hr:length(BVP)/fs_hr;
plot(t,BVP(:,2),t,BVP(:,3))
ylabel('Normalized amplitude')
legend('RGB camera','PPG')
annonation_save('a)',"Fig11.4a.jpg", 1);