示例#1
0
        public DicomDecoder()
        {
            dic                  = new DicomDictionary();
            signedImage          = false;
            dicomFileReadSuccess = false;
            dicomInfo            = new List <string>();

            bitsAllocated       = 0;
            width               = 1;
            height              = 1;
            offset              = 1;
            nImages             = 1;
            samplesPerPixel     = 1;
            photoInterpretation = "";
            unit            = "mm";
            compressedImage = false;
            dicomDir        = false;
            windowCentre    = 1;
            windowWidth     = 1;
            signedImage     = false;
        }
示例#2
0
 public DicomDecoder()
 {
     dic = new DicomDictionary();
     signedImage = false;
     dicomInfo = new List<string>();
     InitializeDicom();
 }
示例#3
0
        public DicomDecoder()
        {
            _dic = new DicomDictionary();

            InitializeDicom();
        }