| 80 | |
| 81 | |
| 82 | DcmImagePixelModule::DcmImagePixelModule() |
| 83 | { |
| 84 | Bdebug((3, "dcimapix:DcmImagePixelModule::DcmImagePixelModule()" )); |
| 85 | |
| 86 | SamplesPerPixel = 1; |
| 87 | PhotometricInterpretation = EPI_unknown; |
| 88 | Rows = 0; |
| 89 | Columns = 0; |
| 90 | BitsAllocated = 0; |
| 91 | BitsStored = 0; |
| 92 | HighBit = 0; |
| 93 | PixelRepresentation = 0; |
| 94 | PixelData = (DcmOtherByteOtherWord*)NULL; |
| 95 | pixelDataIsPartOfDatset = FALSE; |
| 96 | |
| 97 | NumberOfFrames = 1; |
| 98 | PlanarConfiguration = 0; |
| 99 | PixelAspectRatio = 0; |
| 100 | SmallestImagePixelValue = 0; |
| 101 | LargestImagePixelValue = 0; |
| 102 | RedPalColLuTEntryNumber = 0; |
| 103 | RedPalColLuTMinValue = 0; |
| 104 | RedPalColLuTBitWidth = 0; |
| 105 | RedPalColLuT = (Sint32*)NULL; |
| 106 | GreenPalColLuTEntryNumber = 0; |
| 107 | GreenPalColLuTMinValue = 0; |
| 108 | GreenPalColLuTBitWidth = 0; |
| 109 | GreenPalColLuT = (Sint32*)NULL; |
| 110 | BluePalColLuTEntryNumber = 0; |
| 111 | BluePalColLuTMinValue = 0; |
| 112 | BluePalColLuTBitWidth = 0; |
| 113 | BluePalColLuT = (Sint32*)NULL; |
| 114 | |
| 115 | allDataValid = FALSE; |
| 116 | Edebug(()); |
| 117 | } |
| 118 | |
| 119 | |
| 120 | // ******************************** |
nothing calls this directly
no outgoing calls
no test coverage detected