3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

VSCodeでcv2にエラーがあるっていわれる

Last updated at Posted at 2020-10-29

概要

VisualStudioCodeでpythonのプログラムを書いてました。
OpenCVのライブラリを使用する時にコードに赤線が出たって話です。
スクリーンショット 2020-10-29 17.10.30.png

Module 'cv2' has no 'imread' member

※imread の部分がエラーによって変わります。

動作環境

MacOS Catalina
Visual Studio Code 1.39.2
python 3.8.5
opencv-python 4.4.0

確認

ちなみにcv2は入ってます。
ここのエラーではないことを最初に確認しましょう。

import cv2

この一文でエラーが出る場合はcv2が入っていません。
以下をターミナルで実行してください。

$brew install opencv
$pip install opencv-python

解決方法

VSCodeの設定を開いてください。
Code -> Preferences -> Settings
スクリーンショット 2020-10-29 17.12.42.png

設定を開いたら上の検索窓で以下を入力して検索。

python.linting.pylintEnabled

出てきた項目のチェックを外してください。
スクリーンショット 2020-10-29 17.14.38.png

#結果
消えました。
スクリーンショット 2020-10-29 17.15.47.png

おしまい

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?