Package com.github.axet.starjeweled.core

Examples of com.github.axet.starjeweled.core.Lookup


        // desktopImage =
        // capture.load("/Users/axet/Desktop//Screen Shot 2011-08-19 at 18.55.22.png");
        desktopImage = capture.capture();
        frame.capture.setImage(desktopImage);

        Lookup lookup = new Lookup();
        BufferedImage i = lookup.filterMask(desktopImage);
        frame.mask.setImage(i);
        BufferedImage i2 = lookup.filterNoise(i);
        frame.noise.setImage(i2);
        rectangle = lookup.getBounds(i2);
        BufferedImage i3 = lookup.crop(i2, rectangle);
        frame.bounds.setImage(i3);

        Recognition rr = new Recognition(desktopImage, rectangle);
        colorTable = new BoardColorsTable(rr.matrix);
View Full Code Here

TOP

Related Classes of com.github.axet.starjeweled.core.Lookup

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.