Open Mogy opened 6 months ago
Hi @Mogy,
many thanks for your issue :)
Yes, the displays may have a quite wrong color which is due to the cheap LEDs inside. There is not much we could do. With some little programming one could build some kind of lookup table for a given hex color and transform it somewhat to make it look more accurate. But that would imply to do a lot of manual testing for the different colors and what they actually should look like.
For example: if white would be too blue, and white is represented by 255,255,255 (RGB color scheme) then one could reduce the amount of blue like so: 255,255,230 and check if this looks better. The lookup table could then set the 230 for blue as 100% instead of 255 and work around the hardware limitations that way.
Not ideal and not working for all color variations of course but better than nothing.
Don't know whether we should build something like this to be honest. Would be a lot of work for not that much gain.
Colors through the native photos of idotmatrix app looks beautiful. but the images i process via the library look extremely washed out. is it possilbe that the official idotmatrix app is compensating for the display somehow?
I've been using the following ImageMagick command to get better color production:
magick $INPUT -resize 32x32 -modulate 100,150,100 -contrast -sharpen 0x1.0 -channel B -evaluate multiply 0.5 +channel $OUTPUT
Will keep exploring other ways
@aviwad many thanks for your feedback. Seems that the default conversion of the images is a problem. The app seem to behave different. Please post an update if you find some even better way to produce better colors :)
Following the issue with the colors, I am using the default color conversion and applying these RGB values for the following colors:
red = [255, 20, 10]
green = [54, 187, 10]
yellow = [244, 190, 0]
purple = [250, 0, 105]
white = [230, 170, 60]
blue = [10, 150, 155]
Hi.
I have previously obtained a 32x32 pixel display. It helps to reproduce the dots in games but has the problem of poor color reproduction. Especially the representation of white is terrible, it looks almost blue.
I understand that this is a hardware problem and difficult to solve with software, but do you have any useful ideas to improve the problem?
Thanks.