下記のコードを実行しましたところSyntaxError: invalid syntaxと出力されてしまい解決できません。
python3
1import cv2 2 3img = cv2 . imread ( "person.jpg" ) 4 5cv2 . imshow("window",img ) 6 7cv2 . waitKey () 8cv2 . destroyAllWindows() 9 10cv2 . imwrite ( "person",img) 11 12 13%matplotlib inline 14import cv2 15import matplotlib . pyplot as plt 16 17 18img = cv2 . imread ( ‘ファイル名 . jpg’ ) 19# 高さ 20height = img . shape [ 0 ] 21# 幅 22width = img . shape [ 1 ] 23# 高さ・幅を150pixelずつ取り除く 24trim _ img = img [ 150 : height , 150 : width ] 25#matplotlibで表示する場合はRGBからBGRに変換 26trim _ img = cv2 . cvtColor ( trim _ img , cv2 . COLOR _ RGB2BGR ) 27plt . imshow ( trim _ img ) 28 29
修正点:
%matplotlib inlineをコメントアウト、plt.show()を最後の行に追加
python3
1import cv2 2 3img = cv2 . imread ( "person.jpg" ) 4 5cv2 . imshow("window",img ) 6 7cv2 . waitKey () 8cv2 . destroyAllWindows() 9 10cv2 . imwrite ( "person",img) 11 12 13#%matplotlib inline 14import cv2 15import matplotlib . pyplot as plt 16 17 18img = cv2 . imread ("person",img) 19# 高さ 20height = img . shape [ 0 ] 21# 幅 22width = img . shape [ 1 ] 23# 高さ・幅を150pixelずつ取り除く 24trim _ img = img [ 150 : height , 150 : width ] 25#matplotlibで表示する場合はRGBからBGRに変換 26trim _ img = cv2 . cvtColor ( trim _ img , cv2 . COLOR _ RGB2BGR ) 27plt . imshow ( trim _ img ) 28 29plt.show()
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
_を.に書き換え実行した結果
python3
1 2import cv2 3 4img = cv2 . imread ( "person.jpg" ) 5 6cv2 . imshow("window",img ) 7 8cv2 . waitKey () 9cv2 . destroyAllWindows() 10 11cv2 . imwrite ( "person",img) 12 13 14#%matplotlib inline 15import cv2 16import matplotlib . pyplot as plt 17 18 19img = cv2 . imread ("person",img) 20# 高さ 21height = img . shape [ 0 ] 22# 幅 23width = img . shape [ 1 ] 24# 高さ・幅を150pixelずつ取り除く 25trim.img = img [ 150 : height , 150 : width ] 26#matplotlibで表示する場合はRGBからBGRに変換 27trim.img = cv2.cvtColor (trim.img , cv2.COLOR.RGB2BGR) 28plt . imshow (trim.img) 29 30plt.show() 31```出力結果 32![イメージ説明](4263251893a94686f2c1b95672e56bd0.png)
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/11 23:39
2021/02/11 23:54
2021/02/12 00:57
2021/02/12 01:11 編集
2021/02/12 01:27
2021/02/12 09:25
2021/02/13 06:13