This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
ret, th1 = cv2.threshold(img, 127, 255, cv2.THRESH_BINARY) ret, th2 = cv2.threshold(img, 127, 255, cv2.THRESH_BINARY_INV) ret, th3 = cv2.threshold(img, 127, 255, cv2 ...
ラズパイでカメラを使ったプロジェクトに挑戦しようと、画像処理のサンプルコードを動かしてみたら、import cv2の一行目でいきなりエラーが…。『ModuleNotFoundError: No module named 'cv2'』と表示され、先に進めなくて困った経験はありませんか? このエラーは ...