fix bug #190: directly pass Transform Options to Matrix, allowing to use RowMajor. Fix issues in Transform with non-default Options.

This commit is contained in:
Benoit Jacob
2011-02-22 08:14:38 -05:00
parent 659c97ee49
commit 39d3bc2394
2 changed files with 14 additions and 8 deletions

View File

@@ -459,5 +459,11 @@ void test_geo_transformations()
CALL_SUBTEST_3(( transformations<double,Projective,AutoAlign>() ));
CALL_SUBTEST_3(( transformations<double,Projective,DontAlign>() ));
CALL_SUBTEST_3(( transform_alignment<double>() ));
CALL_SUBTEST_4(( transformations<double,Affine,RowMajor|AutoAlign>() ));
CALL_SUBTEST_4(( transformations<double,AffineCompact,RowMajor|AutoAlign>() ));
CALL_SUBTEST_5(( transformations<double,Projective,RowMajor|AutoAlign>() ));
CALL_SUBTEST_5(( transformations<double,Projective,RowMajor|DontAlign>() ));
}
}