Details
-
Improvement
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
0.6
-
None
Description
ProjectiveTransform handles arbitrary matrices in a generic way. However in practice, many matrices are diagonal + a translation transform. We may get some performance improvement if we write a specialized transform class for such matrices, because it would replace a O(n²) operation by a O(n) one (n is the matrix size).