Exemplo n.º 1
0
        public void FromGray16(Gray16 source)
        {
            byte rgb = ImageMaths.DownScaleFrom16BitTo8Bit(source.PackedValue);

            this.R = rgb;
            this.G = rgb;
            this.B = rgb;
        }
Exemplo n.º 2
0
 public void FromGray16(Gray16 source) => this.FromScaledVector4(source.ToScaledVector4());
Exemplo n.º 3
0
 public void FromGray16(Gray16 source)
 {
     this.R = source.PackedValue;
     this.G = source.PackedValue;
     this.B = source.PackedValue;
 }