[orx-color] Add color histograms

This commit is contained in:
Edwin Jakobs
2020-08-18 21:56:29 +02:00
parent c76e2148e0
commit 0747cfd01c
5 changed files with 194 additions and 0 deletions

16
orx-color/README.md Normal file
View File

@@ -0,0 +1,16 @@
# orx-color
Tools to work with color
## Color presets
orx-color adds an extensive list of preset colors to `ColorRGBa`. Check [sources](src/main/kotlin/presets/Colors.kt) for a listing of the preset colors.
## Color histograms
orx-color comes with tools to calculate color histograms for images.
```
val histogram = calculateHistogramRGB(image)
val colors = histogram.sortedColors()
```