Solving Problems Nobody Ever Has
Remember that last post?
No?
Good. Then don’t scroll down. Or do. Idunno.
One thing I wanted for my more-or-less-automated TV show plots was appropriate colors to differentiate seasons.
I assume that’s a problem we can all relate to.
Of course in the R and ggplot2 bubble, there’s the RColorBrewer
package that provides nice and easy color palettes of varying sizes. But that’s boring.
Also, repetitive.
So let’s fix that.
What do we have?
We have the season posters, or at least the season boxset covers. Can’t be too hard to get a color from those, right?
As you can see from the Stargate SG-1 season posters on this page, they mostly have distinct colors. Mostly. But alas, trakt apparently didn’t get a consistent set of season posters, so I had to fill in the blanks via google image searches.
Like a fucking animal.
Well then. Once I downloaded all the season images, I tried to figure out how to determine the average/most dominant/whatever color for each image. Thankfully I have a full blown L3viathan at my disposal, who pointed me at imagemagick.
And as it turned out, convert file.png -filter box -resize 1x1! -format "%[pixel:u]" info:
actually did a decent job.
For the first season cover of SG1, the output looks like this: srgb(57,91,121)
– And I can live with that.
Blatantly ignoring the leading ’s’, I used these values to get a list of rgb colors in R, starting by putting numbers in vectors in a list:
|
|
Once again: Manually. Like a fucking animal.
Now I had a bunch of decimal vectors representing rgb colours(ish), how convenient.
Two problems:
- ggplot2 wants rgb hex strings in the common
#RRGGBB
format - The colors were too dark to look nice and be easily distinguishable
The solution to the first problem is simple: R’s rgb()
function in the base tools is sufficient.
The second problem, however, is funky.
After messing around with the hcl
and hsv
functions, I concluded that the proper™ way to increase the color’s luminance (“making it brighter” in fancy terms) wasn’t going to work as easy as I thought, and I really didn’t want to spend another day or two reading about color theory and perception as I did for the Wurstmineberg people favColor conundrum of months past – So I did the honorable thing and resorted to L3viathan’s original suggestion to just +50
that shit and walk away.
And I did.
|
|
Another fine example for the handyness of the *apply
function family in R, no for
was shed that day.
Going the extra mile
That was not enough.
I can pull the season poster urls from trakt just the same way I pulled the ratings, titles and whatnot in the last post, so why not use them directly?
Get the poster url, download it, throw imagemagick at it, capture the output, parse it as an R expression so it’s used as a vector, throw a bunch of numbers at it so it’s “brighter” (yes, color theory, perception, I know, I KNOW don’t yell at me I know it’s sketchy), convert to rgb and attach to the data.frame
that contains all the other season data. Should be reasonably useless to do, so I did it, and here it is:
|
|
Piece of cake. Glorious, delicious cake.
As I pointed out before, the SG1 season posters on trakt are inconsistent, so I’ll use the Game of Thrones posters as an example. They have nice distinct colors, so that should do well.
Well… Good enough.
I can still adjust how much actually gets added in the makeshift brightness™ adjustion step, but oh well.
At least it’s automated now.
Of course, the trakt stuff requires the functions of that thing I did last time.