mcychan / nQuant.j2se

Fast pairwise nearest neighbor based algorithm with Java Swing

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

nQuant.j2se

Fast pairwise nearest neighbor based algorithm with Java Swing

Fast pairwise nearest neighbor based algorithm producing high quality 256 color 8 bit PNG images minimizing color loss for photo having red lips and supports 256 or less colors with transparency. A new multilevel thresholding algorithm derived from the well-known pairwise nearest neighbor ~PNN! method previously used in vector quantization. The PNN has been considered a slow algorithm, as the time complexity of the original method was shown to be O(N3).
Faster approaches have been proposed by Kurita using a heap structure, and by Fra¨nti et al. using nearest neighbor pointers. The time complexity of the method is O(N log N), which is significantly better than that of optimal thresholding.

The Java version of the code, together with a test driver, using simple drag and drop method to convert the dropped image to 256 colors directly. The main method is located at PQCanvas.java. It will open a JFrame dialog.

Original photo:

Reduced to 256 colors by Pairwise Nearest Neighbor Quantization Algorithm:

About

Fast pairwise nearest neighbor based algorithm with Java Swing

License:Apache License 2.0


Languages

Language:Java 100.0%