Analyze FLU Signal

Extract Fv/Fm data of objects and produce pseudocolored images.

plantcv.fluor_fvfm(fdark, fmin, fmax, mask, filename, bins=1000)

returns FLU channel histogram headers, FLU channel histogram data

Output Data Units: - Bin-number - number of bins set by user
- FV/FM Bins - bin values based on number of bins set by user
- FV/FM Histogram - histogram of FV/FM ratio values for object
- FV/FM Histogram Peak - bin value of histogram peak (greatest number of pixels)
- FV/FM Median - bin value of histogram median
- F-Dark Passed QC - Check (True or False) to determine if Fdark image does not have pixel intensity values above 2000.

Fdark image

Screenshot

Fmin image

Screenshot

Fmax image

Screenshot

from plantcv import plantcv as pcv

# Set global debug behavior to None (default), "print" (to file), or "plot" (Jupyter Notebooks or X11)
pcv.params.debug = "print"

# Analyze Fv/Fm    
 fvfm_header, fvfm_data = pcv.fluor_fvfm(fdark, fmin, fmax, kept_mask, filename, 1000)

Histogram of Fv/Fm values

Screenshot

Pseudocolored output image based on Fv/Fm values

Screenshot