https://github.com/yoyoberenguer/hsl
HSL to RGB and RGB to HSL
https://github.com/yoyoberenguer/hsl
algorithm color-conversion hsl hue luminescence saturation
Last synced: about 2 months ago
JSON representation
HSL to RGB and RGB to HSL
- Host: GitHub
- URL: https://github.com/yoyoberenguer/hsl
- Owner: yoyoberenguer
- License: mit
- Created: 2020-01-18T09:04:51.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-11-01T18:22:35.000Z (over 3 years ago)
- Last Synced: 2025-02-08T09:15:23.816Z (3 months ago)
- Topics: algorithm, color-conversion, hsl, hue, luminescence, saturation
- Language: C
- Size: 580 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![]()
# HSL project
## Why installing HSL :
```
This library offers a fast conversion tools such as (HSL to RGB ) and (RGB to HSL)
ported into cython for better performances
```
## Project description :
```
Conversions between color systems (cython library)
This module defines bidirectional conversions of color values between colors
expressed in the RGB (Red Green Blue) color space used in computer monitors and three
HLS (Hue Lightness Saturation).
```## Installation
```
pip install HSL
```## How to?
``` python
from HSL.hsl import rgb_to_hsl, hsl_to_rgbif __name__ == '__main__':
ONE_255 = 1.0 / 255.0
r, g, b = 25, 60, 128
print("\nOriginal RGB values (R:%s, G:%s, B:%s)\n" % (r, g, b))
h, s, l = rgb_to_hsl(r * ONE_255, g * ONE_255, b * ONE_255)
print("HSL values (H:%s, S:%s, L:%s)" % (h * 360.0, s * 100.0, l * 100.0))
r, g, b = hsl_to_rgb(h, s, l)
print("Retrieved RGB values (R:%s, G:%s, B:%s)\n" % (r * 255.0, g * 255.0, b * 255.0))
```## Building cython code
```
If you need to compile the Cython code after changing the files hsl.pyx or hsl.pxd or
the external C code please proceed as follow:1) open a terminal window
2) Go in the main project directory where (hsl.pyx & hsl.pxd files are located)
3) run : python setup_hsl.py build_ext --inplaceIf you have to compile the code with a specific python version, make sure
to reference the right python version in (python setup_hsl.py build_ext --inplace)If the compilation fail, refers to the requirement section and make sure cython
and a C-compiler are correctly install on your system.
- A compiler such visual studio, MSVC, CGYWIN setup correctly on your system.
- a C compiler for windows (Visual Studio, MinGW etc) install on your system
and linked to your windows environment.
Note that some adjustment might be needed once a compiler is install on your system,
refer to external documentation or tutorial in order to setup this process.
e.g https://devblogs.microsoft.com/python/unable-to-find-vcvarsall-bat/
```## Credit
Yoann Berenguer## Dependencies :
```
python >= 3.0
cython >= 0.28
```## License :
```
MIT LicenseCopyright (c) 2019 Yoann Berenguer
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```## Timing :
```python
Test with 1000000 iterationsThis library
rgb_to_hsl per call 2.061723e-07 overall time 0.206172 seconds
hsl_to_rgb per call 1.181744e-07 overall time 0.118174 secondsColorsys library
colorsys.rgb_to_hls per call 1.054554e-06 overall time 1.054554 seconds
colorsys.hls_to_rgb per call 8.701219e-07 overall time 0.870121 seconds
```