Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
How can i seperate the values for R, B,G and pass the values to a equation and plot the graph?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
i am getting values using
imshow strip1.tiff
vals = impixel
then i have to substitute the values of R , B , G in this equation
Ar = -log (Rs/ Rb)
Ag = -log (Gs/ Gb)
Ab = -log (Bs/ Bb)
and plot graph for RGB in one graph itself.
0 comentarios
Respuestas (1)
Walter Roberson
el 19 de Abr. de 2013
What are "Rs", "Gs", "Bs", "Rb", "Gb", "Bb" ?
R = vals(:,1);
G = vals(:,2);
B = vals(:,3);
1 comentario
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!