changeset 473:178c69ba2970

bug corrected
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Wed, 12 Mar 2014 17:47:49 -0400
parents a50c026fdf14
children 59903d14d244
files python/cvutils.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/python/cvutils.py	Wed Mar 12 17:36:49 2014 -0400
+++ b/python/cvutils.py	Wed Mar 12 17:47:49 2014 -0400
@@ -287,7 +287,7 @@
         invMap2 = -ones(originalImageSize)
         for x in range(0,originalImageSize[1]):
             for y in range(0,originalImageSize[0]):
-                res = cvutils.correctedCoordinates(x,y, map1, map2)
+                res = correctedCoordinates(x,y, map1, map2)
                 if not isnan(res).any():
                     invMap1[y,x] = res[0]
                     invMap2[y,x] = res[1]