Tagged Questions
2
votes
1answer
91 views
Generating fast color rectangles
I am designing a more powerful color picker for Qt and looking for some advice. How would one go about generating fast real-time color rectangles such as the ones found in Photoshop (for HSB and RGB). ...
0
votes
1answer
369 views
How to programmatically arrange a set of 256 RGB colors in 2D so that there all adjacent colours have a smooth transition
I have a set of 256 colors (all available colors in an xterm-256color terminal) and I am using a script called 256colors2.pl that I see mentioned in nearly every Internet article that talks about 256 ...
0
votes
1answer
2k views
HSV (0 .. 255) to RGB (0 .. 255) [duplicate]
Possible Duplicate:
Algorithm to convert RGB to HSV and HSV to RGB?
Can someone explain on how to convert an HSV value to an RGB when the value is 0 to 255? Also,
For reference, I am ...
5
votes
2answers
113 views
I need to diff two images to see what color(s) are different. Any medium level algorithms?
If I have two images which are both the left side view of a the same shoe in different styles, how can I determine by which color(s) they differ? Perhaps it's a shoe in two styles, one style has pink ...
1
vote
3answers
945 views
HSL Interpolation
If the hue component of my HSL color is in degrees, how can I correctly interpolate between two hues? Using (h1 + h2) / 2 does not seem to produce desirable results in all cases. Here are two ...