前提・実現したいこと
画像を読み込み、それを表示するプログラムで以下のエラーメッセージが出ます。
どこを改善すべきなのか教えていただきたいです。
・エラーメッセージ
--------------------------------------------------------------------------- DisabledFunctionError Traceback (most recent call last) <ipython-input-4-74a16ad73a7b> in <module>() ----> 1 cv2.imshow('image',img) 2 cv2.waitKey(0) 3 cv2.destroyAllWindows() /usr/local/lib/python3.6/dist-packages/google/colab/_import_hooks/_cv2.py in wrapped(*args, **kwargs) 50 def wrapped(*args, **kwargs): 51 if not os.environ.get(env_var, False): ---> 52 raise DisabledFunctionError(message, name or func.__name__) 53 return func(*args, **kwargs) 54 DisabledFunctionError: cv2.imshow() is disabled in Colab, because it causes Jupyter sessions to crash; see https://github.com/jupyter/notebook/issues/3935. As a substitution, consider using from google.colab.patches import cv2_imshow
該当のソースコード
import numpy as np import cv2 # Load an color image in grayscale img = cv2.imread('messi5.jpg',0) cv2.imshow('image',img) cv2.waitKey(0) cv2.destroyAllWindows()
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/25 11:47