Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecInt *Median(int MaskSize, int Index, int Len); | Applies median filter with size Mask to the calling vector elements [Index.. Index+Len-1]. |
| 2 | TMtxVecInt *Median(TMtxVecInt *Src, int MaskSize, int SrcIndex, int Index, int 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]. |
| 3 | int Median(int Index, int Len); | Calculate median value for calling vector elements [Index]..[Index+Len-1]. |
| 4 | int Median(); | Median. |
| 5 | TVecInt *Median(int MaskSize); | Applies median filter with size Mask to the calling vector. |
| 6 | TVecInt *Median(TMtxVecInt *Src, int MaskSize); | Applies median filter with size Mask to data in Src and stores the result in the calling vector. |
Overload 1: TMtxVecInt *Median(int MaskSize, int Index, int Len);
Applies median filter with size Mask to the calling vector elements [Index.. Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | MaskSize | int | |
| 2 | Index | int | |
| 3 | Len | 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(TMtxVecInt *Src, int MaskSize, int SrcIndex, int Index, int 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 * | |
| 2 | MaskSize | int | |
| 3 | SrcIndex | int | |
| 4 | Index | int | |
| 5 | Len | 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.
Overload 3: int Median(int Index, int Len);
Calculate median value for calling vector elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | int | |
| 2 | Len | int |
An exception is raised if TVecInt::ConditionCheck is true and array borders are overrun.
Overload 4: int Median();
Median.
Calculate median value for all calling object elements.
Overload 5: TVecInt *Median(int MaskSize);
Applies median filter with size Mask to the calling vector.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | MaskSize | 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 6: TVecInt *Median(TMtxVecInt *Src, int 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 * | |
| 2 | MaskSize | 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.