PySport / matplotvideo

Attach video player to matplotlib plot
MIT License
40 stars 6 forks source link

cv2 version incompatibility #8

Open achrys01 opened 1 year ago

achrys01 commented 1 year ago

I get the following error: "AttributeError: module 'cv2' has no attribute 'cv2' " at this line: ---> 44 self.__frame_count = int(self.__cap.get(cv2.cv2.CAP_PROP_FRAME_COUNT)) I assume it is due to an update of the cv2 package that causes it. Can it be fixed?

msabers commented 11 months ago

I get the following error: "AttributeError: module 'cv2' has no attribute 'cv2' " at this line: ---> 44 self.__frame_count = int(self.__cap.get(cv2.cv2.CAP_PROP_FRAME_COUNT)) I assume it is due to an update of the cv2 package that causes it. Can it be fixed?

I have the same issue. Have you figured out how to solve it?

achrys01 commented 11 months ago

Yes, it is a syntax error if I remember correctly. I think the proper merhod in cv2 is cv2.CAP.... not cv2.cv2.CAP...

Sent from Outlook for Androidhttps://aka.ms/AAb9ysg


From: msabers @.> Sent: Tuesday, September 26, 2023 8:13:28 PM To: PySport/matplotvideo @.> Cc: Andreas Chrysanthou @.>; Author @.> Subject: Re: [PySport/matplotvideo] cv2 version incompatibility (Issue #8)

I get the following error: "AttributeError: module 'cv2' has no attribute 'cv2' " at this line: ---> 44 self.__frame_count = int(self.__cap.get(cv2.cv2.CAP_PROP_FRAME_COUNT)) I assume it is due to an update of the cv2 package that causes it. Can it be fixed?

I have the same issue. Have you figured out how to solve it?

— Reply to this email directly, view it on GitHubhttps://github.com/PySport/matplotvideo/issues/8#issuecomment-1735959101, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AVXK6U4HCE3JLTY3HANZWFDX4MELRANCNFSM6AAAAAAUPTECC4. You are receiving this because you authored the thread.Message ID: @.***>

msabers commented 11 months ago

Yes, it is a syntax error if I remember correctly. I think the proper merhod in cv2 is cv2.CAP.... not cv2.cv2.CAP... Sent from Outlook for Androidhttps://aka.ms/AAb9ysg ____ From: msabers @.> Sent: Tuesday, September 26, 2023 8:13:28 PM To: PySport/matplotvideo @.> Cc: Andreas Chrysanthou @.>; Author @.> Subject: Re: [PySport/matplotvideo] cv2 version incompatibility (Issue #8) I get the following error: "AttributeError: module 'cv2' has no attribute 'cv2' " at this line: ---> 44 self.__frame_count = int(self.__cap.get(cv2.cv2.CAP_PROP_FRAME_COUNT)) I assume it is due to an update of the cv2 package that causes it. Can it be fixed? I have the same issue. Have you figured out how to solve it? — Reply to this email directly, view it on GitHub<#8 (comment)>, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AVXK6U4HCE3JLTY3HANZWFDX4MELRANCNFSM6AAAAAAUPTECC4. You are receiving this because you authored the thread.Message ID: @.***>

That is right, now it works. Thanks