| 784 | } |
| 785 | |
| 786 | void DICOMAppHelper::PixelRepresentationCallback( |
| 787 | DICOMParser* parser, doublebyte, doublebyte, DICOMParser::VRTypes, unsigned char* val, quadbyte) |
| 788 | { |
| 789 | unsigned short uival = |
| 790 | DICOMFile::ReturnAsUnsignedShort(val, parser->GetDICOMFile()->GetPlatformIsBigEndian()); |
| 791 | #ifdef DEBUG_DICOM_APP_HELPER |
| 792 | std::cout << "Pixel Representation: " << (uival ? "Signed" : "Unsigned") << std::endl; |
| 793 | #endif |
| 794 | this->PixelRepresentation = uival; |
| 795 | } |
| 796 | |
| 797 | void DICOMAppHelper::PhotometricInterpretationCallback( |
| 798 | DICOMParser*, doublebyte, doublebyte, DICOMParser::VRTypes, unsigned char* val, quadbyte) |
nothing calls this directly
no test coverage detected