Overload List
| # | Signature | Description |
|---|---|---|
| 1 | double Median(TMtxVecInt *X); | Computes the Median from the source data. |
| 2 | VectorInt Median(TVecInt *Src, const int MaskSize); | Applies median filter with size Mask to data in Src and returns result. |
Overload 1: double Median(TMtxVecInt *X);
Computes the Median from the source data.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt * |
Remarks:
Internally calls TVecInt::Median
Declared in Dew::Math::Units::MtxExprInt · Dew.Math/Units.MtxExprInt.h · Cross-compiler
Overload 2: VectorInt Median(TVecInt *Src, const int MaskSize);
Applies median filter with size Mask to data in Src and returns result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVecInt * | |
| 2 | MaskSize | const int |
Remarks:
Median filter is a nonlinear filter which replaces each element from Src vector with the median value, calculated over a fixed range (mask) centered around that element and returns this as result.
Declared in Dew::Math::Units::MtxExprInt · Dew.Math/Units.MtxExprInt.h · Cross-compiler