in the theory related to the reproduction of color photography, the equation
is found. the X,Y and Z represent the red,green, and blue densities of the reproductions, respectively, and the x,y,z represent the red,green and blue densities, respectively, of the subject. give the equations relating X,Y, and Z and x,y, and z
Attachments:
Answers
Answered by
0
This is simple matrix multiplication
We have a 3 x 3 matrix (3 rows and 3 columns) and one 3 x 1 matrix (3 rows and 1 column) so the multiplication result will be stored in a 3 x 1 matrix.
Rule : product of MxN, NxP matrix is MxP
To multiply : pick the entire row of first matrix and entire column of second matrix and then multiply values in one-to-one mapping fashion.
1. multiply 1.0 to x
2. multiply 0.1 to y
3. multiply 0.0 to z
Finally add all the results = 1.0x + 0.1y + 0.0z = 1.0x + 0.1y
similarly multiply 2nd row, 3rd row
We have a 3 x 3 matrix (3 rows and 3 columns) and one 3 x 1 matrix (3 rows and 1 column) so the multiplication result will be stored in a 3 x 1 matrix.
Rule : product of MxN, NxP matrix is MxP
To multiply : pick the entire row of first matrix and entire column of second matrix and then multiply values in one-to-one mapping fashion.
1. multiply 1.0 to x
2. multiply 0.1 to y
3. multiply 0.0 to z
Finally add all the results = 1.0x + 0.1y + 0.0z = 1.0x + 0.1y
similarly multiply 2nd row, 3rd row
Similar questions