diff python/cvutils.py @ 315:82b9be447608

bugfix for dot import
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Fri, 12 Apr 2013 13:16:38 -0400
parents ca9131968bce
children 6b65b26c1e46
line wrap: on
line diff
--- a/python/cvutils.py	Tue Apr 09 12:38:58 2013 -0400
+++ b/python/cvutils.py	Fri Apr 12 13:16:38 2013 -0400
@@ -173,7 +173,7 @@
 def projectArray(homography, points):
     '''Returns the coordinates of the projected points (format 2xN points)
     through homography'''
-    from numpy.core._dotblas import dot
+    from numpy.core import dot
     from numpy.core.multiarray import array
     from numpy.lib.function_base import append