Programming problem RGB values ​​in 1 value?

Hello everyone, I have a programming problem:
An image analysis program provides me with RGB values ​​([R, G, B])
as an array from 0 to 255 each.
However, I now have to convert these values ​​into one that goes from 0 to 255.

For example, if I have the RGB value 255,0,0, that is in the single value: 0
if I have the RGB value 0,255,0 it is the value 85 and at 0,0,255 it is 170
and at 255 again 255,0,0
Does anyone have any idea how I can convert this?

(1 votes)
Loading...

Similar Posts

Subscribe
Notify of
7 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
VeryBestAnswers
1 year ago

The Colour to get, you can this answer to StackOverflow use. Only you need to multiply the result at the end with 42,66, not with 60, and add with a negative result 255 because the result should be between 0 and 255.

jo135
1 year ago

If I understand correctly, you want to convert RGB to the HSV model, you just need h (hue).

https://de.wikipedia.org/wiki/HSV color space# Conversion_RGB_in_HSV/HSL

VeryBestAnswers
1 year ago
Reply to  Maximus663

Probably because Hue is usually given as a value between 0 and 360, but you want a value between 0 and 255.

Tannibi
1 year ago
Reply to  jo135

Does the HSV model not only have blue, black and white?