Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecInt Median(TMtxVecInt Src, Int32 MaskSize) | Applies median filter with size Mask to data in Src and stores the result in the calling vector. |
| └ indexed: TMtxVecInt Median(TMtxVecInt Src, Int32 MaskSize, Int32 SrcIndex, Int32 Index, Int32 Len) | ||
| 2 | TMtxVecInt Median(Int32 MaskSize) | Applies median filter with size Mask to the calling vector. |
| └ indexed: TMtxVecInt Median(Int32 MaskSize, Int32 Index, Int32 Len) |
Overload 1: TMtxVecInt Median(TMtxVecInt Src, Int32 MaskSize)
Applies median filter with size Mask to data in Src and stores the result in the calling vector.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | MaskSize | Int32 |
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 and stores the result in the calling vector.
Indexed: TMtxVecInt Median(TMtxVecInt Src, Int32 MaskSize, Int32 SrcIndex, Int32 Index, Int32 Len)
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 | source TVecInt or TMtxInt |
| 2 | MaskSize | Int32 | |
| 3 | SrcIndex | Int32 | source start index |
| 4 | Index | Int32 | start index |
| 5 | Len | Int32 | 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: TMtxVecInt Median(Int32 MaskSize)
Applies median filter with size Mask to the calling vector.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | MaskSize | Int32 |
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.
Indexed: TMtxVecInt Median(Int32 MaskSize, Int32 Index, Int32 Len)
Applies median filter with size Mask to the calling vector elements [Index.. Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | MaskSize | Int32 | |
| 2 | Index | Int32 | start index |
| 3 | Len | Int32 | 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.