Ranklet Logo
 

Downloads

The following software for the computation of Ranklets is free for non-commercial use. Be sure to read the Disclaimer at the bottom of this page before you download it.

Matlab

  • Script for the efficient computation of Ranklets using the counting sort algorithm described in this paper.

C/C++

The following three implementations use the same interface, and are therefore easily interchangeable:

  • Code to compute Ranklets efficiently using Distribution Counting sort, as described in Section 3 of this paper. Best for computation at sparse location in the image.

  • Code for the efficient computation of Ranklets using Incremental Distribution Counting (see Section 4.1 of this paper). Best for raster scans.

  • Code to compute Ranklets using QuickSort, as in the original paper on Ranklets. Best suited for sparse computation; slightly less efficient than Counting sort, but the code is easier to understand. Complete with a simple test program.

Disclaimer:

The above software is distributed as is in the hope that it will be useful, but without any warranty, including the implied warranties of merchantability or fitness for a particular purpose. In no event will the Authors be liable for damage deriving in any way from the use of this software, even if advised of the possibility of such damage. Commercial use is explicitly forbidden without written consent of the Authors of the respective packages.