Problem with matlab fit

2 views (last 30 days)
Thomas Koelen
Thomas Koelen on 1 Apr 2015
Commented: Thomas Koelen on 1 Apr 2015
While this might not solely be a matlab problem, I guess I could still ask it here:
I measured a grayscale chart with spectrophotometer and with a scanner. I have two data sets (already in Matlab). One of the data sets is the Y value of the scanner (combination of R, G and B) and the Y value the spectrophotometer gives. I want to make an OECF curve so I use the fitting tool:
this looks allright. Now my supervisor told me that I can show the Density on the X-axis instead of the reflectance. but still use the same fit!!
Density = -log10(reflectance/100).
That will look like this:
How can the same fit as used in the first picture still work for the graph with the Density instead othe reflectance, the graphs form is completely different! Matlab also gives a completely different fit.
The fit:
19.9+10.28*X^0686
should work for both graphs (according to my supervisor), by changing something with the X in the formula. This is for a program that I'm writing that analyses test charts for scanners.
Kind regards,
Thomas Koelen

Accepted Answer

Torsten
Torsten on 1 Apr 2015
Density = -log10(reflectance/100), thus
Reflectance = 100*10^(-Density).
Inserting into your fit equation gives
Scanner Luminance = 19.9+10.28*(100*10^(-Density))^0.686
Scanner Luminance = 19.9+242.1*10^(-0.686*Density)
Thus the fit can used for both graphical representations.
Best wishes
Torsten.
  1 Comment
Thomas Koelen
Thomas Koelen on 1 Apr 2015
Thanks Torsten!
Great help as always.

Sign in to comment.

More Answers (0)

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!