Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 481 Bytes

README.md

File metadata and controls

20 lines (12 loc) · 481 Bytes

8puzzl

C++ implementation of the classic 8-puzzle game (https://en.wikipedia.org/wiki/Sliding_puzzle). The game uses an image you specify (tested with JPEG and PNG). It slices the image into pieces and shuffles them.

./puzzledpictures "<image file path>"

8puzzldemo1080.mov

How to build (for now)

  1. brew install qt@6
  2. brew install libopencv-dev
  3. mkdir build
  4. cd build
  5. cmake ../
  6. make