前提・実現したいこと
Pythonで上半身と下半身認識を行っています。
以下のエラーが発生し、わかりません。
教えてください。お願いします。
発生している問題・エラーメッセージ
// -- coding: utf-8 --
import cv2
def body_recognition(file_path):
"""上半身と下半身を検知するメソッド"""
//画像読み込み グレースケール変換
image = cv2.imread(file_path)
image_gray = cv2.cvtColor(image, cv2.COLOR_RGB2GRAY)
//カスケード分類機読み込み
upperbody_cascade = cv2.CascadeClassifier(r'../../opencv-3.3.1/data/haarcascades/haarcascade_upperbody.xml')
lowerbody_cascade = cv2.CascadeClassifier(r'../../opencv-3.3.1/data/haarcascades/haarcascade_lowerbody.xml')
//カスケード分類機から上半身、下半身それぞれの矩形を取得 upperbody_rects = upperbody_cascade.detectMultiScale(image_gray, scaleFactor=1.2, minNeighbors=3, minSize=(10, 10)) lowerbody_rects = lowerbody_cascade.detectMultiScale(image_gray, scaleFactor=1.2, minNeighbors=3, minSize=(10, 10)) color = (255, 0, 0) #上半身は青 for rect in upperbody_rects: cv2.rectangle(image, tuple(rect[0:2]),tuple(rect[0:2]+rect[2:4]), color, thickness=2) cv2.imwrite('../images/detected.jpg', image) color = (0, 0, 255) #下半身は赤 for rect in lowerbody_rects: cv2.rectangle(image, tuple(rect[0:2]),tuple(rect[0:2]+rect[2:4]), color, thickness=2) cv2.imwrite('../images/detected.jpg', image)
def main():
file_path = "../images/soccer.jpg"
body_recognition(file_path)
if name == 'main':
main()
エラーメッセージ error Traceback (most recent call last) <ipython-input-31-0530ea1c925b> in <module>() 31 32 if __name__ == '__main__': ---> 33 main() 1 frames <ipython-input-31-0530ea1c925b> in main() 28 def main(): 29 file_path = "../images/soccer.jpg" ---> 30 body_recognition(file_path) 31 32 if __name__ == '__main__': <ipython-input-31-0530ea1c925b> in body_recognition(file_path) 6 #画像読み込み グレースケール変換 7 image = cv2.imread(file_path) ----> 8 image_gray = cv2.cvtColor(image, cv2.COLOR_RGB2GRAY) 9 10 #カスケード分類機読み込み error: OpenCV(4.1.2) /io/opencv/modules/imgproc/src/color.cpp:182: error: (-215:Assertion failed) !_src.empty() in function 'cvtColor'