Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 573 Bytes

CONVOLVE.md

File metadata and controls

20 lines (15 loc) · 573 Bytes

Convolve

Blur, sharpen, or otherwise manipulate an image using a convolution matrix.

See the algorithm in src/ai_workshop/api/convolve.py.

Usage

$ aiw convolve -h
usage: aiw convolve [-h] -f IMAGE_FILENAME [-i ITERATIONS]

options:
  -h, --help            show this help message and exit
  -f IMAGE_FILENAME, --file IMAGE_FILENAME
                        .csv file containing your image as text
  -i ITERATIONS, --iterations ITERATIONS
                        Number of iterations to process. Default 2.
(.venv-ai)