Contents

Luo_Suppe2026-08-15

All items(functions/classes/consts) in this module are as follows:

No.itemtypeintroduce
1math.correction.gammafunctionGamma transform.Reference equation: Out = constant * ((data - vvmin) / vptp) ** gamma_v) * vptp.
2math.correction.logfunctionLogarithmic transformation.Reference equation: Out = log2(1 + (data - vmin) / vptp) * vptp * constant.
3math.correction.sigmoidfunctionS-shaped curve function transformation.Reference equation: Out = 1 / (1 + exp(constant * (cutoff - (data - vmin) / vptp))) * vptp.
4math.evaluation.MAEfunctionMaximum Absolute Error.
5math.evaluation.NRMSEfunctionNormalized Root Mean Square Error.
6math.evaluation.R2functionCoefficient of determination.
7math.evaluation.RMSEfunctionRoot Mean Square Error.
8math.evaluation.corrcoeffunctionCorrelation coefficient and significance.
9math.kernel.aggregatefunctionAggregate array.
10math.prepro.fill_nodatafunctionInterpolate missing or abnormal values.
11math.prepro.to_numeric_arrayfunctionForces the input data to be converted to a numeric array, values that cannotbe converted will be modified to nan.
12math.smooth.moving_averagefunctionData smoothing based on moving average method.
13math.smooth.savitzky_golayfunctionData smoothing based on Savitzky-Golay method.
14math.stretch.hist_equalizefunctionApply non-linear contrast stretching, where the values are distributed within the bit depth range.
15math.stretch.max_minfunctionUse linear stretching with the minimum and maximum output pixel values as the endpoints of the histogram.
16math.stretch.percentagefunctionTruncates the array based on the percentage interval entered.Then stretch it to the specified range.
17math.stretch.stdfunctionStandard deviation stretch. This method is used to emphasize how much feature values vary from the mean value;it is best when used on normally distributed data.
Last Updated 8/15/2026, 5:38:26 AM