Flip Horizontal

To run sample code for flip horizontal transformation, follow these steps:

  1. Clone the maya-cli repository
    git clone https://github.com/0xmayalabs/maya-cli.git
    
  2. Cd into the directory
    cd maya-cli
    
  3. To prove that an image is correctly flipped horizontally, run:
    docker run --rm -v "$(pwd):/opt/maya" 0xmayalabs/maya-cli:latest prove flip-horizontal \
    --original-image=./sample/original.png \
    --final-image=./sample/flipped_horizontal.png \
    --proof-dir=proofs
    
  4. To verify that an image is correctly flipped horizontally, run:
    docker run --rm -v "$(pwd):/opt/maya" 0xmayalabs/maya-cli:latest verify flip-horizontal \
    --final-image=./sample/flipped_horizontal.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.