Comment on Evolution of Mona Lisa in JavaScript & CanvasparentComments−Tichy17yHow do you compute the similarity, pixel by pixel?−bdOP17yYes, I try to do it as cheaply as possible. abs(r1-r2) + abs(g1-g2) + abs(b1-b2)−wlievens17yTypically, distance between multiple samples of stuff uses the minimize-the-sum-of-squares technique, maybe it applies here too?
Comments
How do you compute the similarity, pixel by pixel?
Yes, I try to do it as cheaply as possible.
Typically, distance between multiple samples of stuff uses the minimize-the-sum-of-squares technique, maybe it applies here too?