You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As the TAPAS gives valuable output figures for peak detection of the cardiac pulse, I am interested in obtaining a similar figure for the respiratory cycle. Is there a straightforward way to extract this information (A similar figure to cardiac pulses) from TAPAS without modifying the core code significantly?
Thank you.
Best regards,
Ruwan
The text was updated successfully, but these errors were encountered:
If you select the respiratory volume per time (RVT) model as an output, and then use the original computation method by Rasmus Birn et al. that is based on maxima and minima of the breathing trace (see PhysIO/code/model/tapas_physio_rvt_peaks.m, you might already get what you want. You can try it out by setting
physio.model.rvt.method = 'peaks'; % the default it now 'hilbert', which is more robust for atypical breathing (yawns etc.), but doesn't use peak detection
physio.verbose.level = 2; % or higher; to get the peak plots
If you just need the plot, this will suffice. If you want to extract the peak times, you will have to dig some variables out of tapas_physio_rvt_peaks, e.g,. timeRpulseMax.
Hi,
As the TAPAS gives valuable output figures for peak detection of the cardiac pulse, I am interested in obtaining a similar figure for the respiratory cycle. Is there a straightforward way to extract this information (A similar figure to cardiac pulses) from TAPAS without modifying the core code significantly?
Thank you.
Best regards,
Ruwan
The text was updated successfully, but these errors were encountered: