diff python/cvutils.py @ 319:6b65b26c1e46

minor
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Mon, 06 May 2013 15:27:11 +0200
parents 82b9be447608
children 5f75d6c23ed5
line wrap: on
line diff
--- a/python/cvutils.py	Sun Apr 21 22:38:16 2013 -0400
+++ b/python/cvutils.py	Mon May 06 15:27:11 2013 +0200
@@ -188,7 +188,7 @@
         return p
 
 def project(homography, p):
-    '''Returns the coordinates of the projection of the point p
+    '''Returns the coordinates of the projection of the point p with coordinates p[0], p[1]
     through homography'''
     from numpy import array
     return projectArray(homography, array([[p[0]],[p[1]]]))