-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Different file versions in between different python versions #8
Comments
Hi. Do you mean you had same problem in #7 with python 3.8? |
Hi! Yes. It still has that height width converted problem. |
I just tried following code with Python3.9/opencv4.5.1 in m1 arm macbook, and checked it works without any error. Could you tell me more detailed information? # run on /python_package directory
import cv2
import numpy as np
import imregpoc
ref = cv2.imread('imgs/ref.png',0)
cmp = cv2.imread('imgs/cmp.png',0)
res = imregpoc.imregpoc(ref,cmp)
# Show stitched Image
res.stitching() |
Maybe it's a problem solely with python 3.8.0?
I don't think running the code you mentioned above is relevant since this issue was from the difference in height and width with the shape of the image img1 and img2 in my error has the same image size with 580 x 912 The code works in Python 3.7.5, just not in 3.8.0 |
Hi!
The 'ref.png' and 'cmp.png' are reference images given in your package. BTW the window size problem exists in the MATLAB code too. |
#7
This issue is present in python 3.8 but not in older versions.
I'm guessing python 3.8 is using an older version of your files.
I understand recommended python version is 3.5, but it would be nice if it worked up to the recent python versions.
The text was updated successfully, but these errors were encountered: