Final group project for CS 484
Steps to get set up:
- Install ToyViewer from the App Store so you can view PPMs
- Install
gcc
(OSX uses LLVM’s clang compiler, not gcc):sudo brew install --with-all-languages --without-multilib gcc
(this will probably take about an hour and make your computer sound like it’s melting) - Install
imagemagick
to get access to theconvert
utility:sudo brew install imagemagick
(this should finish in a couple minutes) - Clone the repo:
git clone git@github.com:cjs-smith1993/ImageMosaic.git
- Set up a couple directories:
cd ImageMosaic && mkdir bin output
- Compile the project:
make
- Run the project on the images, creating a 5x5 grid:
./bin/mosaic.o images_ppms/Fett5.ppm images_ppms/ 5 5
- Open the mosaic:
open output/mosaic.ppm
- Rejoice!