Answers for "Module 'cv2' has no 'imread' member"

2

Module 'cv2' has no 'imread' member

(1) open palette on VS Code (use specifies command): CTRL + Shift + P
(2) then select "Preferences: Open Settings (JSON)" option in the palette dropdown
(3) then add the following line in the opened "settings.json" file
"python.linting.pylintArgs": ["--generate-members"]
Posted by: Guest on May-29-2020
1

Module 'cv2' has no 'imread' memberpylint(no-member)

from cv2 import cv2
Posted by: Guest on September-27-2020

Code answers related to "Module 'cv2' has no 'imread' member"

Python Answers by Framework

Browse Popular Code Answers by Language