#2d #table #integral #sum #image #2d-array

summed-area

Implementation of a summed-area table for fast sums or averages of subsections of a 2d array or an image

1 stable release

1.0.0 Sep 19, 2022

#1249 in Math

Download history 45/week @ 2023-12-18 36/week @ 2024-01-01 13/week @ 2024-01-08 62/week @ 2024-01-15 94/week @ 2024-01-22 68/week @ 2024-01-29 51/week @ 2024-02-05 107/week @ 2024-02-12 71/week @ 2024-02-19 87/week @ 2024-02-26 75/week @ 2024-03-04 87/week @ 2024-03-11 18/week @ 2024-03-18 39/week @ 2024-03-25 71/week @ 2024-04-01

218 downloads per month
Used in mss_saliency

MIT/Apache

12KB
198 lines

Summed Area Table AKA Integral Image

It precomputes sums of all rows and columns in a 2d array for fast O(1) querying of sums of areas within it.

It does this:

let mut sum = 0;
for row in y1..y2 {
    for col in x1..x2 {
        sum += input[col + row * width];
    }
}

but faster:

// precompute
let s = SummedArea::new(input, width);

// now it's fast:
let sum = s.sum_range(x1..x2, y1..y2);

Dependencies

~62KB