Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Median(const X: TMtxVecInt): Double; | Computes the Median from the source data. |
| 2 | function Median(const Src: TVecInt; const MaskSize: Integer): VectorInt; | Applies median filter with size Mask to data in Src and returns result. |
Overload 1: function Median(const X: TMtxVecInt): Double;
Computes the Median from the source data.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt |
Returns: Double
Remarks:
Internally calls TVecInt.Median
Overload 2: function Median(const Src: TVecInt; const MaskSize: Integer): VectorInt;
Applies median filter with size Mask to data in Src and returns result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVecInt | |
| 2 | MaskSize | Integer |
Returns: VectorInt
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.