Ask Your Question

david.bernstein's profile - activity

2019-05-17 22:33:45 -0600 received badge  Self-Learner (source)
2019-05-15 12:58:56 -0600 marked best answer DISOptical flow in 4.1?

Hi Everyone, I'm converting some python code from opencv version 3.4 to 4.1. The code uses the DISOpticalFlow algorithm (https://docs.opencv.org/4.1.0/de/d4f/...) but the interface to this class seems to have changed. If anyone has used the DIS optical flow in V4.1 in a python code I would appreciate an example snippet.

Thanks, Dave

2019-05-15 12:55:20 -0600 commented question DISOptical flow in 4.1?

Yes, you're right, here's a version that works in 4.1 import cv2 if __name__ == '__main__': print('cv2 version: {

2019-05-15 12:16:04 -0600 commented question DISOptical flow in 4.1?

When running this with V4.1 I get: Traceback (most recent call last): File "dis_minimal.py", line 13, in <module&g

2019-05-15 12:15:29 -0600 commented question DISOptical flow in 4.1?

Yes sorry, here is a minimal example that works in 3.4.4.19: import cv2 if __name__ == '__main__': print('cv2 version

2019-05-15 00:52:01 -0600 asked a question DISOptical flow in 4.1?

DISOptical flow in 4.1? Hi Everyone, I'm converting some python code from opencv version 3.4 to 4.1. The code uses the D