I want to take a picture of something.
The colors in the picture are not the same as I see in my eyes.
So in order to fix this problem, I decided to place a red paper (with RGB: [255 0 0]
) and then take a picture including this paper.
If I see that the RGB of the paper is changed (such as [243 15 7]
),
I will change all the RGB in the picture by the next way:
- R (red), it will be added by value
12
. - G (green), it will be subtracted by value
15
. - B (blue), it will be subtracted by value
7
.
By this way, my paper will be changed to his correct RGB [255 0 0]
and then I can be sure that all the rest picture's RGB was changed to its original color.
What do you think about this way?
What you are trying to do is called Color Management/Color Correction.
I have some remarks: