bokeh 0.1.0

A Rust implementation of image-blurring, focussing on disc-shaped kernels to produce a bokeh lens-effect.
Documentation
_default:
    @just --list

# Runs clippy on the sources
check:
    cargo clippy -- -D warnings

# Runs unit tests
test:
    cargo test

set positional-arguments

# Makes kernel plot
plot temp_dir='/tmp/plot_tmp':
    mkdir -p {{temp_dir}}
    cargo r --quiet --example kernel_data -- {{temp_dir}}
    venv/bin/python docs/plot_kernels.py {{temp_dir}}
    cp {{temp_dir}}/kernel_shapes.png docs/
    rm -rf {{temp_dir}}