public void TestLookupValues()
        {
            const double rescaleSlope     = 1.5e-9;
            const double rescaleIntercept = 351;

            var lut = new NormalizationLutLinear(rescaleSlope, rescaleIntercept);

            lut.AssertLookupValues(-65536, 65536);
        }
		public void TestLookupValues()
		{
			const double rescaleSlope = 1.5e-9;
			const double rescaleIntercept = 351;

			var lut = new NormalizationLutLinear(rescaleSlope, rescaleIntercept);

			lut.AssertLookupValues(-65536, 65536);
		}