Esempio n. 1
0
        public bool signedImage = false; //

        public DicomDecoder()
        {
            dicomInfo            = new List <string>();
            dic                  = new DicomDictionary();
            jdec                 = new JpegDecode();
            signedImage          = false;
            dicomFileReadSuccess = false;
            dicomInfo            = new List <string>();

            readingDataElements = true;
            oddLocations        = false;
            delimiter           = false;

            location            = 0;
            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;
        }
Esempio n. 2
0
        uint vr; // Value Representation

        #endregion Fields

        #region Constructors

        public DicomDecoder()
        {
            dicomInfo = new List<string>();
            dic  = new DicomDictionary();
            jdec = new JpegDecode();
            signedImage = false;
            dicomFileReadSuccess = false;
            dicomInfo = new List<string>();

            readingDataElements = true;
            oddLocations = false;
            delimiter = false;

            location = 0;
            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;
        }