


I don't think there is a theory about pixel sorting. You can use Java2D from Clojure too, but it's not easy (I'm currently making a wrapper for this). If you want to use Clojure - use Quil, which is Processing wrapper.
#Java pixel sorter 32 bit
And this is what you usually sort: 32 bit integer representing color of the pixel. For example: ARGB 0x23aabbcc is color $aabbcc with alpha 0x23. Most popular are ARGB or RGB models packed int 32bit integer. In Java world (java.awt) pixel can be represented in various ways (see, and classes).
#Java pixel sorter update
What they are and how get them and how update them after sort. I suppose the main problem is not with sorting algorithm but with pixel selection or even pixels. Java has Collection.sort(), Clojure has (sort coll), Processing has also sort(). Probably every language with collections has a sort function built in. If you know what sorting is you should know what pixel sorting is too.
