LDicomDS::GetVOILUT
#include "ltdic.h"
L_UINT16 LDicomDS::GetVOILUT(uVOILUTIndex, pVOILUTAttributes, uStructSize, uFlags)
L_UINT uVOILUTIndex; |
/* index */ |
pDICOMVOILUTATTRIBS pVOILUTAttributes; |
/* pointer to a structure */ |
L_UINT uStructSize; |
/* size of a structure */ |
L_UINT uFlags; |
/* reserved for future use */ |
Retrieves the attributes that describe the VOI LUT.
Parameter |
Description |
uVOILUTIndex |
Index to the VOI LUT to be retrieved. According to the DICOM standard one or more items could exist under one VOI LUT Sequence (0028,3010), use this index to specify which item to use in order to populate the pVOILUTAttributes structure. This index is zero-based. |
pVOILUTAttributes |
Pointer to a structure to be updated with the VOI LUT attributes. |
uStructSize |
Size of the DICOMVOILUTATTRIBS structure. Pass sizeof(DICOMVOILUTATTRIBS). |
uFlags |
Reserved for future use. Pass 0. |
Returns
0 |
The function was successful. |
> 0 |
An error occurred. Refer to Return Codes. |
Comments
This function will retrieve the attributes that describe a VOI LUT and store their values in the structure pointed to by pVOILUTAttributes.
pVOILUTAttributes ->uStructSize will be set to the value of the parameter uStructSize.
Before calling this function call LDicomDS::GetVOILUTCount to see if a VOI LUT Sequence (0028,3010) exists in the DICOM dataset and to retrieve the number of items under that sequence.
uVOILUTIndex is zero-based. If you pass 0, this function will populate pVOILUTAttributes->LUTDescriptor with the values of the "LUT Descriptor"(0028,3002) under the first item in the "VOI LUT Sequence" and pVOILUTAttributes->pszLUTExplanation with the value of "LUT Explanation" (0028,3003) element, if it exists.
Required DLLs and Libraries
LTDIC For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application |
See Also
Example
For an example, refer to LDicomDS::SetVOILUT.