SbKernel3i32GetValue Method |
Returns the value of the kernel at position (i, j, k).
Namespace: OIV.ImageVizAssembly: OIV.ImageViz (in OIV.ImageViz.dll) Version: 9.9.13.0 (9.9.13.0)
Syntaxpublic int GetValue(
int indexCol,
int indexRow,
int indexSlice
)
Public Function GetValue (
indexCol As Integer,
indexRow As Integer,
indexSlice As Integer
) As Integer
public:
int GetValue(
int indexCol,
int indexRow,
int indexSlice
)
member GetValue :
indexCol : int *
indexRow : int *
indexSlice : int -> int
Parameters
- indexCol
- Type: SystemInt32
- indexRow
- Type: SystemInt32
- indexSlice
- Type: SystemInt32
Return Value
Type:
Int32
RemarksRange of each index is between 0 and n-1 with n, the number of elements in each dimension, i.e getNumCols() for columns, getNumRows() for rows, and getNumSlices() for slices. Throws an SbException if indices are out of bounds.
See Also