YoshiRi / ImRegPOC

FFT based image registration tool for Python and MATLAB
Other
83 stars 26 forks source link

Path and name of test images #2

Closed abderhasan closed 6 years ago

abderhasan commented 6 years ago

Hello Yoshi,

I believe that lines (456-457) in imregpoc.py:

ref = cv2.imread('../testref1.png',0)
cmp = cv2.imread('../testcmp1.png',0)

should be:

ref = cv2.imread('ref.png',0)
cmp = cv2.imread('cmp.png',0)

In other words, the names of the image files need to be changed, as the ones provided in the code directory have different names than the ones mentioned in the code, and are in the current directory of the code.

Thanks. Abder

YoshiRi commented 6 years ago

Hello abderhasan.

Thank you for you advice and I fixed this issue.