Exemplo n.º 1
0
 public void FromRgb(ref RgbSpectrum rgbSp, SpectrumType type = SpectrumType.Reflectance)
 {
     var rgb = rgbSp.ToArray();
     var c = FromRGB(rgb, type);
     for (int i = 0; i < nSamples; i++)
     {
         this[i] = c[i];
     }
 }