java - computer image representation method?
怪我咯
怪我咯 2017-06-23 09:13:48
0
2
952

Aren’t pixels generally in RGB space (0~255)

So how are the numbers in the above image transferred?

怪我咯
怪我咯

走同样的路,发现不同的人生

reply all(2)
洪涛

http://blog.csdn.net/cool1949...

For converting color to grayscale, there is a very famous psychological formula:

                      Gray = R*0.299 + G*0.587 + B*0.114
                      

There are other ways

学习ing

After the image is converted into numbers, the number of numbers is equal to the width*height of the image. Each point of the image corresponds to a number. Converting a point into a number can be calculated by a special algorithm or formula, as mentioned above

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template