# HG changeset patch # User Nicolas Saunier # Date 1394660869 14400 # Node ID 178c69ba29707cde8cbaedc0fb2d10525cf76431 # Parent a50c026fdf1412380d90c4b0099f5d2b4b37d950 bug corrected diff -r a50c026fdf14 -r 178c69ba2970 python/cvutils.py --- 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]