| 929 | } |
| 930 | |
| 931 | void DICOMAppHelper::RescaleOffsetCallback( |
| 932 | DICOMParser* parser, doublebyte, doublebyte, DICOMParser::VRTypes, unsigned char* val, quadbyte) |
| 933 | { |
| 934 | float fval = DICOMFile::ReturnAsFloat(val, parser->GetDICOMFile()->GetPlatformIsBigEndian()); |
| 935 | this->RescaleOffset = fval; |
| 936 | #ifdef DEBUG_DICOM_APP_HELPER |
| 937 | std::cout << "Pixel offset: " << this->RescaleOffset << std::endl; |
| 938 | #endif |
| 939 | } |
| 940 | |
| 941 | const char* DICOMAppHelper::TransferSyntaxUIDDescription(const char* uid) |
| 942 | { |
nothing calls this directly
no test coverage detected