Skip to content

Get projections and detrend

get_projections_and_detrend

function [Y, p, R, CaliAli_options] = get_projections_and_detrend(Y, CaliAli_options)

Description

Process session data by detrending and computing projections.

This function processes video session data by applying detrending, removing background noise, and calculating projections such as blood vessels, neuron activity, peak-to-noise ratio (PNR), and correlation images. Prior to saving, the detrended stack is mapped to uint8 using the 99.99th percentile as the reference intensity, keeping outlier pixels from dominating the colour depth.

Function Inputs:
Parameter Name Type Description
Y 3D array Input video session data as a height x width x frames array.
CaliAli_options Structure Configuration options for processing, details in CaliAli_demo_parameters().
Function Outputs:
Parameter Name Type Description
Y 3D array Detrended and background-corrected video data.
p Table Table containing projections: mean image, blood vessels, neuron projection, PNR, and a fused BV-neuron image.
R Data range Data range after detrending, used for normalization.
CaliAli_options Structure Updated options structure after processing.
Example usage:
[Y, p, R, CaliAli_options] = get_projections_and_detrend(Y, CaliAli_options);