#!/usr/bin/env php setcolors(false); $img = new Image; $img->createFromFile($argv[1]) ->algorithm(new image_gauss()) ->algorithm($algorithm); $circleFinder = new circleFinder($img); $circleFinder->find()->save($argv[2]); $img->close();