I have a palette of RGB colors (RGB555 "color space", image 1) which I converted to (CIE-)LCh. I want to present that palette in a 2D image so the user can pick colors from it. The colors should be "close together" (perceived color distance). I thought sorting colors by H,C and L and by H and L*C (image 2) should work somehow, but everything I tried looks rather random. I am pretty sure my color conversions are ok. How can I sort the colors in a "pleasing" way?

Sorting (CIE)LCh colors
73 Views Asked by Bim At
0
There are 0 best solutions below
Related Questions in SORTING
- How to sort a multi-dimensional array by the second array in descending order?
- Ignore #VALUE! error in SORT function
- What is the code of the sorted function?
- Pull out first occurrences from array
- how to keep 10 biggest integer while reading a list in java?
- IQueryable<T> OrderBy<T> Extension Fails with Foreign Key Property
- Anagram test using C++ having compile time error
- How to sort a nested dictionary by the a nested value?
- sort through text file numerically by numbers in column
- Python elegant way to sort numerically named directories
- sorting all data on multiple pages by clicking on its header
- Sort oberservableArray by multiple parameters
- 2D array, sort rows by sum
- sorting RDD elements
- Less beautifier - format code
Related Questions in RGB
- How in vb.net can I insert a value on a read only property?
- Store all RGB values in a database
- Convert a 0-1 value to a hex colour?
- Unexpected behavior in my RGB-strip driver code
- Fragment shader does not show any colour when compiled with vs2013
- Matching Xcode color space with Digital Color Meter
- How can I know if the image is in RGB or BGR format?
- How i can set rgb color?
- Read in Bufferedimage pixel values then manipulate each one and write to file
- assign RGB values in java with nested for function
- Why does windows GDI use RGBA format for `COLORREF` instead of BGRA?
- Python skimage.feature.match_template() RGB image
- Why don't images use functions to store rgb values?
- Does RGB supports decimal values?
- Java BufferedImage
Related Questions in LAB-COLOR-SPACE
- Build a Lab color model in opencv
- Python OpenCV Colorspace Differences Between LAB and Grayscale
- Randomizing a color with fixed lightness
- Grayscale image and L*a*b space in MATLAB
- cv2.cvtColor() from "BGR" to "L*A*B" Without Rounding The Returned Values
- How to find a maximum chroma value in the OKLCH color space for given hue and lightness?
- How does one shift hue in CIE-XYZ color space?
- OpenCV shows LAB TIF picture in weird colors
- How to differentiate between shades of gray in image below?
- Converting CSS Lch to RGB
- Converting from RGB to LAB Colorspace - any insight into the range of L*A*B* values?
- Calculating complementary hue in CIELAB color space
- how to directly convert between HSB color and Lab color in Processing / Java
- How to manipulate the brightness of an image using L*a*b* color space?
- Convert LCh to standard Munsell color system
Related Questions in COLOR-CONVERSION
- ImageMagick color mapping by different metric?
- How does one shift hue in CIE-XYZ color space?
- BOOST::GIL color_converted_view doesn't compile
- How to Remap a YUY2 image?
- Calculating complementary hue in CIELAB color space
- Issues calculating HSP color model
- How can i convert YCbCr to BGR24 using ImageISharp
- Inconsistent results for nppi and cv::cvtColor
- Error in cv2.cvtColor converting an image to HSV (using cv2.COLOR_BGR2HSV)
- NVIDIA CUDA YUV (NV12) to RGB conversion algorithm breakdown
- complementary colors in Julia (RGB versus Lab colorspace)
- Ghostscript: Convert CMYK Color to solid color with specific name
- What does the vector length of a rgb color in vector space mean
- Convert Lab to XYZ
- HSI to RGB color conversion
Related Questions in PERCEPTION
- Is there any distance when comparing two sets (or palettes) of colors?
- How would one know if one saw a random number generator?
- perceptron learning algorithm : convergence proof for the algorithm, why the ||w*|| is equal 1 or this condition is necessary?
- How to generate n different colors for any natural number n?
- How to approximate CSS box-shadow property using solid border only?
- Using perceptually uniform colormaps in Mayavi volumetric visualization
- Sorting (CIE)LCh colors
- Virtual Reality: Word for conflict in depth queue
- What is the shortest perceivable application response delay?
- How fast should a dynamically generated web page be created?
- Face recognition Intel Perceptual Computing
- jQuery: Increase Perceived Responsiveness During the Ready Event
- Perceptual Hash Algorithms in Python or PHP?
- I'm trying to detect a square using Point cloud library. I have pcl data from a 3D lidar in which I need to find squares
- Why does the WCAG contrast formula use the luminance and not the perceived lightness?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?