Python Open CVでカスケードファイルを用いた顔認識を行なっています。
Jupyterで実行しているのですが、下記のエラーが解消できません。
宜しくお願いします。
ERROR:root:Invalid alias: The name clear can't be aliased because it is another magic command.
ERROR:root:Invalid alias: The name more can't be aliased because it is another magic command.
ERROR:root:Invalid alias: The name less can't be aliased because it is another magic command.
ERROR:root:Invalid alias: The name man can't be aliased because it is another magic command.
Python
1import matplotlib.pyplot as plt 2import cv2 3 4cascade_file = "haarcascade_frontalface_alt.xml" 5cascade = cv2.CascadeClassifier(cascade_file) 6 7img = cv2.imread("kinako.jpg") 8img_gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) 9 10face_list = cascade.detectMultiScale(img_gray, minSize=(150,150)) 11 12if len(face_list) == 0: 13 print("失敗") 14 quit() 15 16for (x,y,w,h) in face_list: 17 print("顔の座標=", x, y, w, h) 18 red = (0, 0, 225) 19 cv2.rectangle(img, (x,y), (x+w, y+h), red, thickness=20) 20 21cv2.imwrite("face-detect.png", img) 22plt.imshow(cv2.cvtColor(img, cv2.COLOR_BGR2RGB)) 23plt.show()
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。