SbImageDataAccessor.GetRow Method (SoCpuBufferObject, Int32, Int32, Int32, Int32) |
Get values of the full row at specified coordinates.
Namespace: OIV.ImageVizAssembly: OIV.ImageViz (in OIV.ImageViz.dll) Version: 10.12.3.0 (10.12.3.0)
Syntaxpublic bool GetRow(
SoCpuBufferObject values,
int y,
int z,
int t,
int c
)
Public Function GetRow (
values As SoCpuBufferObject,
y As Integer,
z As Integer,
t As Integer,
c As Integer
) As Boolean
public:
bool GetRow(
SoCpuBufferObject^ values,
int y,
int z,
int t,
int c
)
member GetRow :
values : SoCpuBufferObject *
y : int *
z : int *
t : int *
c : int -> bool
Parameters
- values
- Type: OIV.Inventor.Devices.SoCpuBufferObject
a buffer to retrieve voxel values of one component at specified row position as an array of double. OIV.Inventor.Devices.SoCpuBufferObject cannot be NULL. If its size does not match the required one, it is resized.
- y
- Type: System.Int32
row coordinate
- z
- Type: System.Int32
depth coordinate. Default is 0. Useful for 2D images.
- t
- Type: System.Int32
time coordinate. Default is 0.
- c
- Type: System.Int32
component number. Default is 0.
Return Value
Type:
Booleantrue if the row is correctly read. false otherwise
Remarks
See Also