i need read dataset of recod $7FE0,$0010 sample code in cpp you know how convert below code in delphi
unsigned long count; const Uint16* pixelData; status = _dataSet->findAndGetUint16Array(DcmTagKey(0x7fe0, 0x0010), pixelData, &count);
if (status.good()) { for (unsigned int i = 0; i < static_cast<unsigned int>(this->_geoInfo.getNumberOfVoxels()); i++) { this->doseData.push_back(pixelData[i]); }
Can you tell me what you are trying to do with this raw data? The pixel data ($7FE0,$0010) is the image within the DICOM file, so why access it via the tag rather than just using the image that ImageEn returns?