Tagged Questions
The hsb tag has no wiki summary.
3
votes
4answers
2k views
Color Theory: How to convert Munsell HVC to RGB/HSB/HSL
I'm looking at at document that describes the standard colors used in dentistry to describe the color of a tooth. They quote hue, value, chroma values, and indicate they are from the 1905 Munsell ...
2
votes
6answers
1k views
Algorithm to Switch Between RGB and HSB Color Values
I read the article Algorithm to Switch Between RGB and HSB Color Values
Type RGBColor
Red As Byte
Green As Byte
Blue As Byte
End Type
Type HSBColor
Hue As Double
Saturation ...
2
votes
3answers
230 views
Iterating over colors
Is there a good way to iterate over colors? I know it sounds like a strange question but here's an analogy.
Suppose you write a game where you travel around the Earth. You pick a starting point and ...
0
votes
2answers
77 views
Colour patterns or functions, pyxplot
I'm using a program called pyxplot and I'm doing some colourmaps.
To specify the colors, I can use RGB, HSB or CMYK patterns using
set colourmap ( rgb<r>:<g>:<b> |
...
0
votes
2answers
254 views
How do i convert an RGB color or Hex into HSB?
I'm trying to find a way that i can get the HSB values of an RGB color. Anybody know how to do this?
0
votes
0answers
505 views
Can UIView animate the background color in the HSB colorspace?
Here is my code:
self.view.backgroundColor = [UIColor colorWithHue:0. saturation:1. brightness:1. alpha:1.];
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:5];
...
0
votes
2answers
998 views
Convert HSB color to HSL
Ho do I convert HSB color to HSL?
Photoshop shows HSB color in its color picker. HSL color can be used in CSS.
I tried this JS:
function hsb2hsl(h, s, b) {
return {
h: h,
s: s,
l: ...
0
votes
2answers
2k views
Objective-C RGB to HSB
Let's say I've got the colour FF0000, which is red. Finding a darker colour is easy, I just type maybe CC instead of the FF, but let's say I've got the colour AE83FC, which is a complicated colour, ...
-1
votes
2answers
389 views
UIColor does not match standard RGB color wheel?
Hue in UIColor is not the same as a standard RGB color wheel. What I mean by that is, two opposing colors on a color wheel will match (i.e., yellow and purple), but if you take two opposing colors in ...