Package jjil.algorithm

Examples of jjil.algorithm.Gray8TrapWarp


        int cTr = cYRight;
        int cBl = cYLeft +
                (this.imageCropped.getHeight() - 1) * this.wSlopeLeft / 256;
        int cBr = cYRight +
                (this.imageCropped.getHeight() - 1) * this.wSlopeRight / 256;
        Gray8TrapWarp warp = new Gray8TrapWarp(0this.imageCropped.getHeight(),
                cTl,
                cTr,
                cBl,
                cBr);
        warp.push(this.imageCropped);
        Image imageResult = warp.getFront();
        if (!(imageResult instanceof Gray8Image)) {
            throw new jjil.core.Error(
            jjil.core.Error.PACKAGE.ALGORITHM,
            jjil.algorithm.ErrorCodes.IMAGE_NOT_GRAY8IMAGE,
            imageResult.toString(),
View Full Code Here

TOP

Related Classes of jjil.algorithm.Gray8TrapWarp

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.