HSV is cylindrical color model that determines colors by hue (0°-360°), saturation (color intensity) and lightness (from black over the color to white).
0
votes
1answer
35 views
Making a dynamic gradient with HSL or RGB
I have a standard 50-state map built with d3 in which I'm dynamically coloring states according to various datasets. Whatever the dataset, the values are normalized on a scale of 0 to 1, where 1 ...
1
vote
4answers
79 views
CSS: lighten an element on hover
Assuming an element is at 100% saturation, opacity, etc... how can I have its background become slightly lighter when it is hovered?
The use case is that I'm allowing a user to hover over any element ...
0
votes
2answers
35 views
Can I change a single parameter of a colour in CSS?
When I design things in Adobe Illustrator, I like to pick a colour and then play with its brightness or saturation to make myself a similar colour of the "same family".
In CSS, you can define colours ...
4
votes
1answer
68 views
Button background appears 3% darker than it should be
I'm adding CSS to a Bootstrap-based web app, to match a PDF from a designer. There's a button image, whose background color Seashore reports as rgb(0,186,158) aka hsl(171,100,36%). So I set the ...
0
votes
0answers
137 views
HSB vs HSL vs HSV
I am making a Color class as a part of a very basic graphics API in c++. So I decided to take a look at Microsoft's .NET framework and noticed that their Color class has functions for HSB.
Then I ...
0
votes
1answer
58 views
OpenCL RGB->HSL and back
Ive been through every resource and cant fix my problem.
My host code calls the rgb2hsl kernel, then calls the hsl2rgb kernel. I should end up with the same image that I started with, but I do not. ...
0
votes
0answers
86 views
Compute HSL main color values (red, yellow, green, magenta, blue and purple)
How do I mathematically compute the values for HSL main colors?
I can hardcode them in the program, of course, but I remain interested how can I determine if the color is main or combined. There must ...
0
votes
1answer
276 views
Function for conversion from HSL to RGB C++ [closed]
I'm stuck with this function for maybe 4-5 hours and I'm unable to find out what is wrong with it. Please help me to fix it! I want it to receive three variables - hue from [0, 360), saturation from ...
0
votes
1answer
54 views
Color.GetSaturation() not working?
I use HSL (HSL = HSB as Heu saturation brightness) color filters.
To convert a color to HSL i do :
Color myColor = Color.FromArgb(pixel[blue], pixel[green], pixel[red]);
int HSLhue = ...
1
vote
2answers
546 views
Faster algorithm to change Hue/Saturation/Lightness in a bitmap
I am trying to filter a Bitmap image to increase or decrease Hue, Saturation, and Lightness values.
My code is working perfectly, but it is slow.
I am locking two bitmaps in memory, the original ...
2
votes
2answers
143 views
Turning RGB values into HSL values in a random Javascript
I have a random color overlay on the media-boxes of this site.
http://www.reportageborsen.se/reportageborsen/wordpress/
I had some really good help from the mates here at stackoverflow wich ...
1
vote
1answer
420 views
Calculate the apparent difference in color between two HSI color values
I have two color values in HSI (Hue Saturation and Intensity) and I want a number which represents the visual difference between the two colors. Hue is a number between 0 and 360 inclusive. Saturation ...
4
votes
2answers
120 views
Averaging circular values (particularly Hues in HSL color scheme)
So I was trying to puzzle out how to calculate the average hue of a number of objects whose colors are represented by HSL values. Thankfully, I stumbled across this Stack Overflow post, and set to ...
0
votes
1answer
122 views
How to change color lightness in jquery
I have created a color swatches and a slider for controlling the darkness & lightness of color. I want to change the color lightness according to the slider value. What i tried :
...
2
votes
1answer
90 views
Replace colour tones with HSL + GD?
We are working with a base image that has three tones of blue (#645591, #6B90CA and #7BC8EF) with one user-chosen colour that will replace the first blue value (the base) and it will generate two ...
1
vote
1answer
1k views
OpenCV C++: Convert RGBA to HSL and then split channels
For some image segmentation work I'd like to use the lightness channel of an image in HSL color space.
To accomplish this I convert a RGBA image to RGB and then so HSL. After the color conversion I ...
0
votes
2answers
82 views
Sass: Using HSLa Fallback Technique
Does anyone know a workaround for enabling HSLa color declarations in SASS-compiled stylesheets?
I'd like to use HSLa for the reasons discussed in this article by Chris Coyier. The fallback technique ...
0
votes
4answers
226 views
Can't convert from HSL to RGB
I have a problem with converting a color from HSL to RGB. I've written the following function:
struct RGB {
float r, g, b;
};
RGB hslToRgb( float hue, float saturation, float lightness ) {
...
0
votes
0answers
30 views
Convert RGB value to HSV/HSL [duplicate]
Possible Duplicate:
RGB to HSV in PHP
Please help,I googled many script but all not work ..
Can somebody tell me how to write a function to do the conversion?
0
votes
1answer
77 views
How to use HSLA colors with RMagick?
How to set an arbitrary HSLA color instead of gray20?
draw = Magick::Draw.new
draw.font_family = 'arial'
draw.pointsize = 12
draw.gravity = Magick::CenterGravity
draw.annotate(@canvas, size,size, ...
3
votes
2answers
262 views
RGB color to HSL bytes
I've seen some implementations for converting RGB to HSL. Most are accurate and work in both directions.
To me its not important that it will work in 2 directions (no need to put back to RGB)
But i ...
0
votes
0answers
138 views
Python PGMagic: Use a grayscale image as hue channel
I want to use a greyscale image (or on channel of it as hue channel for an hsl image).
My intention is to convert the grey colour gradient into a coloured one.
I know that the console application ...
2
votes
1answer
264 views
How to convert RGB to HSL in C?
How do I convert RGB to HSL in C/C++?
(Note: This is a (short) self-answer -- I posted it here so people can find it quickly with a search.)
0
votes
3answers
653 views
Converting RGBA, HSL and HSLA colors to RGB (or in a java.awt.Color object)
I'm looking for a description of algorithms for converting RGBA, HSL and HSLA colors to RGB color, or a library for converting them in an java.awt.Color object.
Can you help me?
0
votes
1answer
776 views
HSL to RGB color conversion problems
I am fond of random generation - and random colors - so I decided to combine them both and made a simple 2d landscape generator. What my idea was is to, depending on how high a block is, (yes, the ...
0
votes
1answer
237 views
ImageMagick's composite on HSL (not HSB nor HSV)
Just I want to do is to replace Photoshop's HSL-based blend modes (color/hue/saturation/luminosity) by writing a CUI tool.
Better if I can do it via RMagick.
ImageMagick can manage HSL colorspace, ...
0
votes
1answer
170 views
convert hsl to hsb
what is the formula to convert HSL to HSB? I could only find code that I could easily port for RGB to HSL. According to this stack overflow answer I can conver hsb to hsl using this formula:
(b - s) ...
-1
votes
1answer
296 views
How to apply saturation to photo using php gd
I want to apply saturation to photo using php gd but I only know that to do image editing. I need to:
Change BGR to HSL
do something which I don't know.
Change the result back from HSL to BGR.
...
0
votes
0answers
88 views
Algorithm for converting from BGR to HSL in php [closed]
Anyone know how to convert from BGR to HSL and from HSL to BGR in php?
I tried to understand logic and math from Wikipedia and this site: http://www.easyrgb.com/index.php?X=MATH&H=18#text18.
...
0
votes
2answers
346 views
Farbtastic convert HSL back to RGB or Hex
Edit: Posting Solution
I wanted to create color swatches based on the color chosen in Farbtastic. I did my calculations on the HSL value, because it's easier and produces better results.
After ...
1
vote
1answer
144 views
Converting between RGB and HSL/HSV: What to do with overflows?
I've implemented some functions according to the HSL->RGB and HSV->RGB algorithms.
They mostly work fine, but I'm not sure what is the right thing to do then a color component overflows as a result of ...
1
vote
1answer
228 views
why isn't this HSL to RGB conversion function working?
Okay, I have written a function that should convert HSL color value to RGB. I have rewritten it in PHP according to this script: http://www.easyrgb.com/index.php?X=MATH&H=19#text19
This is what I ...
2
votes
1answer
345 views
Incorrect saturation calculation in RGB to HSL function
Does anybody know the correct formula to get the saturation level from an RGB color?
I already have a function that does it. I've tried loads of them posted on the internet but only this one seemed ...
0
votes
0answers
102 views
Equivalence between 3-points DCT and HSV color transform
I was looking to perform a color decorrelation on a RGB image. I know that various color spaces present various decorelation power, used notably to perform image compression.
The optimal ...
2
votes
1answer
136 views
Is HSL conversion exact?
I have yet to find an algorithm/implementation that can convert rgb(0, 96, 255) to HSL and back, without ending up with a slightly different value (rgb(0, 98, 255)). This means everyone's algorithms ...
1
vote
2answers
336 views
Sorting list by color (Java)
I am looking to sort a list by "color distance." I am using the following function to calculate the distance between two colors:
double colorDistance(Color c1, Color c2) {
double rmean = ...
0
votes
0answers
368 views
How to create lut for rgb to hsl conversion
I need to do a rgb to hsl and vice versa conversion using shaders.. I tried to do all programmatically but it is too slow... So i read about lookup table for conversion, LUT, but i don't know how to ...
0
votes
0answers
894 views
How to calculate Hue, Saturation and Lightness values from a chosen color by input distance
Given a starting hex code, I would like to know the maths to calculate the linear values of lightness in ascending and descending order. Same for Hue and Saturation.
It's kinda difficult for me to ...
0
votes
0answers
501 views
Changing bitmap color/hue efficiently in Android
I am using the following method to change the hue of a bitmap:
public Bitmap changeHue( Bitmap source, double hue ) {
Bitmap result = Bitmap.createBitmap( screenWidth, screenHeight, ...
2
votes
2answers
2k views
Dynamically changing saturation in css
I am creating a stacked bar chart using jQuery a bunch of DIVs. The segments of each stack are colored with different shades of gray. I would like to encode an additional global value onto the bar ...
0
votes
1answer
137 views
Coloring in php using HSL
I want to be able to color some letters (bases) in a sequence. I can make a function to say 'color this' but I can not say what the color is.
I have made some hsl divs using an internal stylesheet ...
0
votes
1answer
194 views
php HSL color scheme : Making a legend
ok So I have created a color scheme, to highlight certain parts of input data(text).
However i need to make a Legend , to tell the user what each color means. This is what i Have so far :
`
...
2
votes
1answer
1k views
Change Saturation, Hue, Lightness of an image algorithm
I want to do exactly like the above image via code (android). But I'm confused about the algorithm to do that. All i know is:
With every pixel:
Convert RGB to HSL
???
Convert HSL back to RGB
...
3
votes
2answers
264 views
Converting HSL to RBG
I'm trying to convert some HSL value to RBG with Data.Colour module. Hackage doc said that Hue is always in the range 0-360. But there are now any ranges of Saturation and Lightness values. Are they ...
4
votes
1answer
299 views
Color profiles conversion
I have a project on color profile conversion in C++, where the idea is to use CIELAB as transition between RGB and all others (CMY; CMYK; HSV; HSL;...).But I have one big big problem. I have searched ...
1
vote
1answer
597 views
Animate background color's saturation or lightness using JQuery
I did a search, and I found a function that randomly changes RGB values only, namely
http://buildinternet.com/2009/09/its-a-rainbow-color-changing-text-and-backgrounds/
However, I simply want to ...
0
votes
1answer
306 views
How to colorize a drawable?
How can I colorize Android drawable by setting hue, saturation delta and brightness delta?
0
votes
2answers
502 views
Is there a function to convert HSL to color:int in actionscript?
I want to define color value by using HSL(Hue, Saturation, Lightness) not RGB.
Does actionscript have a function for that?
For example, I want to write code like the following:
var color:int = ...
3
votes
1answer
189 views
How to colorize via HSL colors?
I have an complex problem, but it could be solved via this little problem. I would like to make a colorizer, which works per pixel.
I have a defined base color for the picture (the picture has some ...
2
votes
2answers
272 views
Change HSL values of a bitmap using c#
I would like to know how i can change the HSL values of a bitmap using C#.
It must be possible to load a bitmap and change the HSL values of it on every pixel.
