123456789101112131415161718192021222324252627282930313233 |
- #pragma once
- #ifndef DIOS_DICOM_IMAGE_HEAD
- #define DIOS_DICOM_IMAGE_HEAD
- static const char* SM_IMAGE_HEAD = "ImageHead";
- static const char* SM_IMAGE_TYPE = "Type";
- static const char* SM_IMAGE_TAG = "ImageTag";
- static const char* SM_IMAGE_INDEX = "ImageIndex";
- static const char* SM_IMAGE_WIDTH = "ImageWidth";
- static const char* SM_IMAGE_HEIGHT = "ImageHeight";
- static const char* SM_IMAGE_BIT = "ImageBit";
- static const char* SM_IMAGE_YEAR = "Year";
- static const char* SM_IMAGE_MONTH = "Month";
- static const char* SM_IMAGE_DAY = "Day";
- static const char* SM_IMAGE_HOUR = "Hour";
- static const char* SM_IMAGE_MINUTE = "Minute";
- static const char* SM_IMAGE_SEC = "Second";
- static const char* SM_IMAGE_MILLSEC = "MilliSecond";
- static const char* SM_IMAGE_TEMP = "DetectorTemperature";
- static const char* SM_IMAGE_ROTATION = "Rotation";
- static const char* SM_IMAGE_FLIP = "Flip";
- static const char* SM_IMAGE_ORIGINX = "OriginX";
- static const char* SM_IMAGE_ORIGINY = "OriginY";
- static const char* SM_IMAGE_LSB = "LSB";
- static const char* SM_IMAGE_DOSE = "Dose";
- static const char* SM_IMAGE_PIXELSPACING = "PixelSpacing";
- static const char* SM_IMAGE_PIXELREPRESENTATION = "PixelRepresentation";
- static const char* SM_IMAGE_EXI2UGY = "FactorEXI2UGY";
- #else
- #endif
|