Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Median(const Src: TMtxVecInt; const MaskSize: Integer; const SrcIndex: Integer; const Index: Integer; const Len: Integer): TMtxVecInt; | Applies median filter with size Mask to Src object elements [SrcIndex..SrcIndex+Len-1] and stores the result in the calling vector elements [Index..Index+Len-1]. |
| 2 | function Median(const MaskSize: Integer; const Index: Integer; const Len: Integer): TMtxVecInt; | Applies median filter with size Mask to the calling vector elements [Index.. Index+Len-1]. |
Overload 1: function Median(const Src: TMtxVecInt; const MaskSize: Integer; const SrcIndex: Integer; const Index: Integer; const Len: Integer): TMtxVecInt;
Applies median filter with size Mask to Src object elements [SrcIndex..SrcIndex+Len-1] and stores the result in the calling vector elements [Index..Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt | |
| 2 | MaskSize | Integer | |
| 3 | SrcIndex | Integer | source start index |
| 4 | Index | Integer | start index |
| 5 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
Median filter is a nonlinear filter which replaces each element of the Src vector with the median value, calculated over the fixed range (mask) centered around that element and stores the result in the calling vector.
Overload 2: function Median(const MaskSize: Integer; const Index: Integer; const Len: Integer): TMtxVecInt;
Applies median filter with size Mask to the calling vector elements [Index.. Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | MaskSize | Integer | |
| 2 | Index | Integer | start index |
| 3 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
Median filter is a nonlinear filter which replaces each element of the calling vector with the median value, calculated over the fixed range (mask) centered around that element.