Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecInt *Median(const int MaskSize) const; | Applies median filter with size Mask to the calling vector. |
| 2 | TMtxVecInt *Median(const int MaskSize, const int Index, const int Len) const; | Applies median filter with size Mask to the calling vector elements [Index.. Index+Len-1]. |
| 3 | TMtxVecInt *Median(TMtxVecInt *Src, const int MaskSize) const; | Applies median filter with size Mask to data in Src and stores the result in the calling vector. |
| 4 | TMtxVecInt *Median(TMtxVecInt *Src, const int MaskSize, const int SrcIndex, const int Index, const int Len) const; | 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]. |
Overload 1: TMtxVecInt *Median(const int MaskSize) const;
Applies median filter with size Mask to the calling vector.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | MaskSize | const int |
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.
Overload 2: TMtxVecInt *Median(const int MaskSize, const int Index, const int Len) const;
Applies median filter with size Mask to the calling vector elements [Index.. Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | MaskSize | const int | |
| 2 | Index | const int | |
| 3 | Len | const int |
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.
Overload 3: TMtxVecInt *Median(TMtxVecInt *Src, const int MaskSize) const;
Applies median filter with size Mask to data in Src and stores the result in the calling vector.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | MaskSize | const int |
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.
Overload 4: TMtxVecInt *Median(TMtxVecInt *Src, const int MaskSize, const int SrcIndex, const int Index, const int Len) const;
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 | const int | |
| 3 | SrcIndex | const int | |
| 4 | Index | const int | |
| 5 | Len | const int |
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.