changeset 315:82b9be447608

bugfix for dot import
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Fri, 12 Apr 2013 13:16:38 -0400
parents 539e2b4cfaa3
children c5518a35df5f
files python/cvutils.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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