Skip to content

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