GolombRice
GolombRice is a data encoding scheme used for compressing sequences of non-negative integers. It is a specialization of Golomb coding where the divisor m is a power of two, typically written as m = 2^k.
In encoding, given x, compute q = floor(x / m) and r = x mod m. The code for
GolombRice coding is favored for data that exhibit a geometric-like distribution with many small values and
A typical use is as an entropy coder for residuals in lossless compression systems, including image and