Dicom.Imaging.PhotometricInterpretation.PhotometricInterpretation C# (CSharp) Method

PhotometricInterpretation() static private method

static private PhotometricInterpretation ( ) : System
return System
        static PhotometricInterpretation()
        {
            _photometricInterpretationMap = new Dictionary<string, PhotometricInterpretation>();
            _photometricInterpretationMap.Add(Monochrome1.Value, Monochrome1);
            _photometricInterpretationMap.Add(Monochrome2.Value, Monochrome2);
            _photometricInterpretationMap.Add(PaletteColor.Value, PaletteColor);
            _photometricInterpretationMap.Add(Rgb.Value, Rgb);
            _photometricInterpretationMap.Add(YbrFull.Value, YbrFull);
            _photometricInterpretationMap.Add(YbrFull422.Value, YbrFull422);
            _photometricInterpretationMap.Add(YbrPartial422.Value, YbrPartial422);
            _photometricInterpretationMap.Add(YbrPartial420.Value, YbrPartial420);
            _photometricInterpretationMap.Add(YbrIct.Value, YbrIct);
            _photometricInterpretationMap.Add(YbrRct.Value, YbrRct);
        }

Same methods

PhotometricInterpretation::PhotometricInterpretation ( string value, string description, bool isColor, bool isPalette, bool isYbr ) : System