distance

open fun distance(one: Array<Double>, two: Array<Double>): Double

Standard CIE 1976 delta E formula also takes the square root, unneeded here. This method is used by quantization algorithms to compare distance, and the relative ordering is the same, with or without a square root.

This relatively minor optimization is helpful because this method is called at least once for each pixel in an image.