-
Notifications
You must be signed in to change notification settings - Fork 882
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
Alternative to cv2.warpPerspective #549
Comments
@FiReTiTi Thanks for the report. The issue is mostly related to cv::remap, because it uses 16-bit indexing in public interface. I need to check if there are options for warping, as it does not expose indexing externally. The issue itself is not related to OpenCV-Python bindings, but general OpenCV issue. It's more efficient to file such bugs to core repository https://github.com/opencv/opencv/ |
Possibly related: opencv/opencv#7544 |
OpenCV uses |
Mmm... I'm a little bit confused.
But few days later they add an assertion in the code.
|
The assertion is done to make the remap issue obvious for developers. It's better than just crash or messy result. |
I found a workaround using |
Expected behaviour
I use OpenCV to register bio-medical images, but these images are really big.
I'm able to extract features and compute the homography
H
, and then I usecv2.warpPerspective
to compute the final image.Actual behaviour
But when
width
orheight
is bigger than 32767, then I get the following error.I took a look online, and I found out that is a hard limitation because of the short encoding used to improve
warpPerspective
.Is there a workaround to lift such limitation?
If no, is there a solution using another library to replace
cv2.warpPerspective
?The text was updated successfully, but these errors were encountered: