การจับวัตถุ python + opencv object Detection ที่ผมมีตัวอย่าง มีแต่จับใบหน้า

ผมอยากทำการจับวัตถุ python + opencv object Detection ที่ผมมีตัวอย่าง มีแต่จับใบหน้า
ผมยังไม่เข้าใจ code เท่าไร ใครรู้เกี่ยวการทำการจับวัตถุ ช่วยแนะนำผมหน่อยครับ

code ของ python 3.6
ตัวอย่าง การจับใบหน้าแล้วบันทึกลงใน folder

#creating database
import cv2, sys, numpy, os
haar_file = 'haarcascade_frontalface_default.xml'
datasets = 'datasets'  #All the faces data will be present this folder
sub_data = 'NAME'     #This will creater folders in datasets with the face of people, so change it's name everytime for the new person.

path = os.path.join(datasets, sub_data)
if not os.path.isdir(path):
    os.mkdir(path)
(width, height) = (130, 100)    # defining the size of images


face_cascade = cv2.CascadeClassifier(haar_file)
webcam = cv2.VideoCapture(0) #'0' is use for my webcam, if you've any other camera attached use '1' like this

# The program loops until it has 30 images of the face.
count = 1
while count < 31:
    (_, im) = webcam.read()
    gray = cv2.cvtColor(im, cv2.COLOR_BGR2GRAY)
    faces = face_cascade.detectMultiScale(gray, 1.3, 4)
    for (x,y,w,h) in faces:
        cv2.rectangle(im,(x,y),(x+w,y+h),(255,0,0),2)
        face = gray[y:y + h, x:x + w]
        face_resize = cv2.resize(face, (width, height))
        cv2.imwrite('%s/%s.png' % (path,count), face_resize)
    count += 1
    
    cv2.imshow('OpenCV', im)
    key = cv2.waitKey(150)
    if key == 27:
        break
แสดงความคิดเห็น
โปรดศึกษาและยอมรับนโยบายข้อมูลส่วนบุคคลก่อนเริ่มใช้งาน อ่านเพิ่มเติมได้ที่นี่