Skip to content
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

Addition of "estimateAffine2D" for finding transformation matrix in OpenCV version greater than 3.0 #515

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

pranav-gupta-7
Copy link

For OpenCV version greater than 3.0 assigned "estimateAffine2D" function for finding transformation matrix. Initially "estimateRigidTransform" was used which only works in OpenCV-3 or less.

For OpenCV version greater than 3.0 assigned "estimateAffine2D" function for finding transformation matrix.
dustinfreeman

This comment was marked as outdated.

@@ -91,7 +91,11 @@ def fixBorder(frame):
curr_pts = curr_pts[idx]

#Find transformation matrix
m = cv2.estimateRigidTransform(prev_pts, curr_pts, fullAffine=False) #will only work with OpenCV-3 or less
if float((cv2.__version__)[0:3])<=3.0:
Copy link

@dustinfreeman dustinfreeman Jul 31, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Based on other usages in the repo, I less brittle version of this is:

if int((cv2.__version__).split('.')[0]) <= 3:

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dustinfreeman what changes do you suggest here to merge this PR?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants