Problem with matlab fit
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/148535/image.png)
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:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/148536/image.png)
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
0 commentaires
Réponse acceptée
Torsten
le 1 Avr 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.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!