You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using ROS Kinetic on Ubuntu 16.04
Seems like the cv module is no longer used?
i removed
"import cv"
and changed the line
"cv.DestroyAllWindows()" to "cv2.destroyAllWindows()" and it worked fine
i also had to remove the line
"cv2.namedWindow(self.windowNameOrig, 2)"
because other wise the cv window crashes on start up.
after these changes the script worked fine.
The text was updated successfully, but these errors were encountered:
Using ROS Kinetic on Ubuntu 16.04
Seems like the cv module is no longer used?
i removed
"import cv"
and changed the line
"cv.DestroyAllWindows()" to "cv2.destroyAllWindows()" and it worked fine
i also had to remove the line
"cv2.namedWindow(self.windowNameOrig, 2)"
because other wise the cv window crashes on start up.
after these changes the script worked fine.
The text was updated successfully, but these errors were encountered: