import Myro.*; public class MyroPicture { private MyroImage image; public MyroPicture() { boolean success; image = new MyroColorImage(); success = image.loadImage("cat.jpg"); if( !success ) { MyroGUI.tellUser("Error Opening Image File"); } else { image.show(); makeGrey(); blur(1); shrink(1.7); expand(1.5); //findCenter() } } private void makeGrey() { MyroImage newImage = new MyroColorImage( image.getWidth(), image.getHeight()); for( int x=0; x