Examples of CoordinateTransformationOperator


Examples of net.algart.math.functions.CoordinateTransformationOperator

    public StitchingFunc getStitchingFunc(List<? extends Frame<P>> frames) {
        if (frames == null)
            throw new NullPointerException("Null frames argument");
        boolean affine2D = true;
        for (Frame<P> frame : frames) {
            CoordinateTransformationOperator o = frame.position().inverseTransform();
            if (!(o instanceof LinearOperator && ((LinearOperator)o).n() == 2)) {
                affine2D = false; break;
            }
        }
        if (affine2D) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.