Comment by voidmain
The paper defines this structure
struct Strip {
x: u16,
y: u16,
alpha_idx_fill_gap: u32,
}
which looks like it is 64 bits (8 bytes) in size,and then says
> Since a single strip has a memory footprint of 64 bytes and a single alpha value is stored as u8, the necessary storage amounts to around 259 ∗ 64 + 7296 ≈ 24KB
am I missing something, or is it actually 259*8 + 7296 ≈ 9KB?
Hi, author here, you are right it seems like I mixed up bytes and bits here. Embarassing mistake, thanks for catching this!