Brighten
To run sample code for crop transformation, follow these steps:
- Clone the maya-cli repository
git clone https://github.com/0xmayalabs/maya-cli.git
- Cd into the directory
cd maya-cli
- To prove that an image is correctly brightened by a brightness factor
factor
, run:docker run --rm -v "$(pwd):/opt/maya" 0xmayalabs/maya-cli:latest prove brighten \ --original-image=./sample/original.png \ --final-image=./sample/brightened.png \ --brightening-factor=2 \ --proof-dir=proofs
- To verify that an image is correctly brightened by a brightness factor
factor
, run:docker run --rm -v "$(pwd):/opt/maya" 0xmayalabs/maya-cli:latest verify brighten \ --final-image=./sample/brightened.png \ --proof-dir=proofs
Please note that the repository contains sample images that you can use to get started quickly,
but you don't need to clone the repository to run the prove
or verify
commands.