System.out.println(a2g3.getSkew());
System.out.println(atb.getMathTransform());*/
}
public static MathTransform getMT() throws FactoryException {
GeneralMatrix M = new GeneralMatrix(3, 3);
/**
* Fill the metrix
*/
double[] m0 = { 0.112804514325, 0.0307621213335, -106.676236219 };
double[] m1 = { 0.0411346319449 , -0.084359723001, 7.8014489685 };
double[] m2 = { 0, 0, 1 };
M.setRow(0, m0);
M.setRow(1, m1);
M.setRow(2, m2);
MathTransform mt = ProjectiveTransform.create(M);
return mt;
}