#include "Ltdic.h"
L_UINT32 LDicomDS::GetCountImage(pElement)
pDICOMELEMENT pElement; |
pointer to a DICOMELEMENT structure |
Returns the number of frames in a Pixel Data element.
Parameter |
Description |
pElement |
Pointer to a DICOMELEMENT structure within the Data Set. |
Number of frames in a Pixel Data element.
If pElement is NULL, this function returns the number of images present in the entire Data Set.
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 |
Win32, x64
Functions: |
|
Topics: |
|
|
How to Disable the Automatic Loading of the default DICOM IOD Table |
This example gets the number of all images in Data Set.
#define MAKE_IMAGE_PATH(pFileName) TEXT("C:\\Users\\Public\\Documents\\LEADTOOLS Images\\")pFileName
L_INT LDicomDS_GetCountImageExample()
{
L_INT nRet;
LDicomDS* pDS;
L_UINT32 nCount;
pDS = new LDicomDS(NULL);
nRet = pDS->LoadDS(MAKE_IMAGE_PATH(TEXT("image1.dcm")), 0);
if(nRet != DICOM_SUCCESS)
return nRet;
nCount = pDS->GetCountImage(NULL);
delete pDS;
return DICOM_SUCCESS;
}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET