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
Since the cell segmentation works very well, I think we could try make use of all the pixels outside the cells in order to determine an automated intensity threshold for whether a cell is infected or not.
For example something like: some_quantile_inside_cell > bg_median + N * bg_mad
Each well could have its own computation of the bg values but maybe we could even use the same across the whole plate.
The text was updated successfully, but these errors were encountered:
N is a parameter, i.e. how many mad (or sdev) do we want to be away from the background.
So essentially your fixed offset would be replaced by some automated measure of the noise level in the background in the respective plate. Thus it would an adaptive threshold.
Since the cell segmentation works very well, I think we could try make use of all the pixels outside the cells in order to determine an automated intensity threshold for whether a cell is infected or not.
For example something like:
some_quantile_inside_cell > bg_median + N * bg_mad
Each well could have its own computation of the bg values but maybe we could even use the same across the whole plate.
The text was updated successfully, but these errors were encountered: