scip.masking.filters package#

Submodules#

scip.masking.filters.normaltest module#

scip.masking.filters.normaltest.filter(x: ndarray) bool#

Performs normality test on pixel values at .05 significance level. Returns True if pixels are not normally distributed.

scip.masking.filters.std module#

scip.masking.filters.std.filter(x: ndarray, threshold: float) bool#

Checks standard deviation of pixel values against threshold. Returns True if standard deviation is above threshold.

scip.masking.filters.value_range module#

scip.masking.filters.value_range.filter(x: ndarray, threshold: float) bool#

Checks range width of pixel values against threshold. Returns True if width is above threshold.